tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

mongolian-vowel-separator-single-eval.js (974B)


      1 // Copyright (C) 2016 André Bargull. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-unicode-format-control-characters
      6 description: >
      7  Mongolian Vowel Separator can appear in single-line comments (eval code).
      8 info: |
      9  11.1 Unicode Format-Control Characters
     10 
     11  The Unicode format-control characters (i.e., the characters in category “Cf”
     12  in the Unicode Character Database such as LEFT-TO-RIGHT MARK or RIGHT-TO-LEFT
     13  MARK) are control codes used to control the formatting of a range of text in
     14  the absence of higher-level protocols for this (such as mark-up languages).
     15 
     16  It is useful to allow format-control characters in source text to facilitate
     17  editing and display. All format control characters may be used within comments,
     18  and within string literals, template literals, and regular expression literals.
     19 features: [u180e]
     20 ---*/
     21 
     22 assert.sameValue(eval("0 //\u180E"), 0);
     23 
     24 reportCompare(0, 0);