vals-eng-alpha-lower.js (1837B)
1 // Copyright (C) 2015 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: Correct interpretation of ENGLISH ALPHABET 6 es6id: 11.6 7 description: Check ENGLISH SMALL ALPHABET 8 ---*/ 9 10 var a = 1; 11 if (a !== 1) { 12 throw new Test262Error('#a'); 13 } 14 var b = 1; 15 if (b !== 1) { 16 throw new Test262Error('#b'); 17 } 18 var c = 1; 19 if (c !== 1) { 20 throw new Test262Error('#c'); 21 } 22 var d = 1; 23 if (d !== 1) { 24 throw new Test262Error('#d'); 25 } 26 var e = 1; 27 if (e !== 1) { 28 throw new Test262Error('#e'); 29 } 30 var f = 1; 31 if (f !== 1) { 32 throw new Test262Error('#f'); 33 } 34 var g = 1; 35 if (g !== 1) { 36 throw new Test262Error('#g'); 37 } 38 var h = 1; 39 if (h !== 1) { 40 throw new Test262Error('#h'); 41 } 42 var i = 1; 43 if (i !== 1) { 44 throw new Test262Error('#i'); 45 } 46 var j = 1; 47 if (j !== 1) { 48 throw new Test262Error('#j'); 49 } 50 var k = 1; 51 if (k !== 1) { 52 throw new Test262Error('#k'); 53 } 54 var l = 1; 55 if (l !== 1) { 56 throw new Test262Error('#l'); 57 } 58 var m = 1; 59 if (m !== 1) { 60 throw new Test262Error('#m'); 61 } 62 var n = 1; 63 if (n !== 1) { 64 throw new Test262Error('#n'); 65 } 66 var o = 1; 67 if (o !== 1) { 68 throw new Test262Error('#o'); 69 } 70 var p = 1; 71 if (p !== 1) { 72 throw new Test262Error('#p'); 73 } 74 var q = 1; 75 if (q !== 1) { 76 throw new Test262Error('#q'); 77 } 78 var r = 1; 79 if (r !== 1) { 80 throw new Test262Error('#r'); 81 } 82 var s = 1; 83 if (s !== 1) { 84 throw new Test262Error('#s'); 85 } 86 var t = 1; 87 if (t !== 1) { 88 throw new Test262Error('#t'); 89 } 90 var u = 1; 91 if (u !== 1) { 92 throw new Test262Error('#u'); 93 } 94 var v = 1; 95 if (v !== 1) { 96 throw new Test262Error('#v'); 97 } 98 var w = 1; 99 if (w !== 1) { 100 throw new Test262Error('#w'); 101 } 102 var x = 1; 103 if (x !== 1) { 104 throw new Test262Error('#x'); 105 } 106 var y = 1; 107 if (y !== 1) { 108 throw new Test262Error('#y'); 109 } 110 var z = 1; 111 if (z !== 1) { 112 throw new Test262Error('#z'); 113 } 114 115 reportCompare(0, 0);