S15.10.2.10_A3.1_T2.js (1697B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: "CharacterEscape :: HexEscapeSequence :: x HexDigit HexDigit" 6 es5id: 15.10.2.10_A3.1_T2 7 description: Checking ENGLISH CAPITAL ALPHABET and english small alphabet 8 ---*/ 9 10 var hex = ["\\x41", "\\x42", "\\x43", "\\x44", "\\x45", "\\x46", "\\x47", "\\x48", "\\x49", "\\x4A", "\\x4B", "\\x4C", "\\x4D", "\\x4E", "\\x4F", "\\x50", "\\x51", "\\x52", "\\x53", "\\x54", "\\x55", "\\x56", "\\x57", "\\x58", "\\x59", "\\x5A"]; 11 var character = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]; 12 var result = true; 13 for (var index = 0; index < hex.length; index++) { 14 var arr = (new RegExp(hex[index])).exec(character[index]); 15 if ((arr === null) || (arr[0] !== character[index])) { 16 result = false; 17 } 18 } 19 20 assert.sameValue(result, true, 'The value of result is expected to be true'); 21 22 hex = ["\\x61", "\\x62", "\\x63", "\\x64", "\\x65", "\\x66", "\\x67", "\\x68", "\\x69", "\\x6A", "\\x6B", "\\x6C", "\\x6D", "\\x6E", "\\x6F", "\\x70", "\\x71", "\\x72", "\\x73", "\\x74", "\\x75", "\\x76", "\\x77", "\\x78", "\\x79", "\\x7A"]; 23 character = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"]; 24 var result = true; 25 for (index = 0; index < hex.length; index++) { 26 arr = (new RegExp(hex[index])).exec(character[index]); 27 if ((arr === null) || (arr[0] !== character[index])) { 28 result = false; 29 } 30 } 31 32 assert.sameValue(result, true, 'The value of result is expected to be true'); 33 34 reportCompare(0, 0);