S15.1.3.4_A4_T1.js (801B)
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: URI tests 6 esid: sec-encodeuricomponent-uricomponent 7 description: Checking ENGLISH ALPHABET 8 ---*/ 9 10 //CHECK#1 11 if (encodeURIComponent("http://unipro.ru/0123456789") !== "http%3A%2F%2Funipro.ru%2F0123456789") { 12 throw new Test262Error('#1: http://unipro.ru/0123456789'); 13 } 14 15 //CHECK#2 16 if (encodeURIComponent("aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ") !== "aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ") { 17 throw new Test262Error('#2: aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ'); 18 } 19 20 //CHECK#3 21 if (encodeURIComponent(";/?:@&=+$,") !== "%3B%2F%3F%3A%40%26%3D%2B%24%2C") { 22 throw new Test262Error('#3: '); 23 } 24 25 reportCompare(0, 0);