tor-browser

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

mongolian-vowel-separator-single.js (1043B)


      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.
      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 // U+180E in comments; UTF8(0x180E) = 0xE1 0xA0 0x8E
     23 assert.sameValue(
     24  0, //᠎  single-line comment with U+180E
     25  0
     26 );
     27 
     28 reportCompare(0, 0);