tor-browser

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

other_id_continue-escaped.js (733B)


      1 // Copyright (C) 2017 André Bargull. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-names-and-keywords
      6 description: Test grandfathered characters of ID_Continue.
      7 info: |
      8  Grandfathered characters (Other_ID_Start + Other_ID_Continue)
      9 ---*/
     10 
     11 // Other_ID_Start (Unicode 4.0)
     12 var a\u2118;
     13 var a\u212E;
     14 var a\u309B;
     15 var a\u309C;
     16 
     17 // Other_ID_Start (Unicode 9.0)
     18 var a\u1885;
     19 var a\u1886;
     20 
     21 // Other_ID_Continue (Unicode 4.1)
     22 var a\u1369;
     23 var a\u136A;
     24 var a\u136B;
     25 var a\u136C;
     26 var a\u136D;
     27 var a\u136E;
     28 var a\u136F;
     29 var a\u1370;
     30 var a\u1371;
     31 
     32 // Other_ID_Continue (Unicode 5.1)
     33 var a\u00B7;
     34 var a\u0387;
     35 
     36 // Other_ID_Continue (Unicode 6.0)
     37 var a\u19DA;
     38 
     39 reportCompare(0, 0);