mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 13:44:29 +01:00 
			
		
		
		
	sourceRevisionAtLastExport: 33f2fb0e53d135f0ee17cfccd9d993eb2a6f47de targetRevisionAtLastExport: 31340cbd9add103f586d501b0c3354b7b182abc0
		
			
				
	
	
		
			49 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright 2015 the V8 project authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a BSD-style license that can be
 | 
						|
// found in the LICENSE file.
 | 
						|
 | 
						|
function Test(lower, upper) {
 | 
						|
  var lx = lower + "x";
 | 
						|
  var ux = upper + "x";
 | 
						|
  var lp = lower + "|";
 | 
						|
  var uxp = upper + "x|";
 | 
						|
  assertEquals(lx, new RegExp(uxp + lp + lower + "cat", "i").exec(lx) + "");
 | 
						|
  assertEquals(ux, new RegExp(uxp + lp + lower + "cat", "i").exec(ux) + "");
 | 
						|
  assertEquals(lower, new RegExp(lp + uxp + lower + "cat", "i").exec(lx) + "");
 | 
						|
  assertEquals(upper, new RegExp(lp + uxp + lower + "cat", "i").exec(ux) + "");
 | 
						|
}
 | 
						|
 | 
						|
function TestFail(lower, upper) {
 | 
						|
  var lx = lower + "x";
 | 
						|
  var ux = upper + "x";
 | 
						|
  var lp = lower + "|";
 | 
						|
  var uxp = upper + "x|";
 | 
						|
  assertEquals(lower, new RegExp(uxp + lp + lower + "cat", "i").exec(lx) + "");
 | 
						|
  assertEquals(ux, new RegExp(uxp + lp + lower + "cat", "i").exec(ux) + "");
 | 
						|
  assertEquals(lower, new RegExp(lp + uxp + lower + "cat", "i").exec(lx) + "");
 | 
						|
  assertEquals(ux, new RegExp(lp + uxp + lower + "cat", "i").exec(ux) + "");
 | 
						|
}
 | 
						|
 | 
						|
Test("a", "A");
 | 
						|
Test("0", "0");
 | 
						|
TestFail("a", "b");
 | 
						|
// Small and capital o-umlaut
 | 
						|
Test(String.fromCharCode(0xf6), String.fromCharCode(0xd6));
 | 
						|
// Small and capital kha.
 | 
						|
Test(String.fromCharCode(0x445), String.fromCharCode(0x425));
 | 
						|
// Small and capital y-umlaut.
 | 
						|
Test(String.fromCharCode(0xff), String.fromCharCode(0x178));
 | 
						|
// Small and large Greek mu.
 | 
						|
Test(String.fromCharCode(0x3bc), String.fromCharCode(0x39c));
 | 
						|
// Micron and large Greek mu.
 | 
						|
Test(String.fromCharCode(0xb5), String.fromCharCode(0x39c));
 | 
						|
// Micron and small Greek mu.
 | 
						|
Test(String.fromCharCode(0xb5), String.fromCharCode(0x3bc));
 | 
						|
// German double s and capital S. These are not equivalent since one is double.
 | 
						|
TestFail(String.fromCharCode(0xdf), "S");
 | 
						|
// Small i and Turkish capital dotted I. These are not equivalent due to
 | 
						|
// 21.2.2.8.2 section 3g.  One is below 128 and the other is above 127.
 | 
						|
TestFail("i", String.fromCharCode(0x130));
 | 
						|
// Small dotless i and I. These are not equivalent either.
 | 
						|
TestFail(String.fromCharCode(0x131), "I");
 |