mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 11:44:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright 2009 the Sputnik authors.  All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| 
 | |
| /*---
 | |
| info: |
 | |
|     White Space and Line Terminator between LogicalORExpression and "||" or
 | |
|     between "||" and LogicalANDExpression are allowed
 | |
| es5id: 11.11.2_A1
 | |
| description: Checking by using eval
 | |
| ---*/
 | |
| 
 | |
| //CHECK#1
 | |
| if ((eval("false\u0009||\u0009true")) !== true) {
 | |
|   throw new Test262Error('#1: (false\\u0009||\\u0009true) === true');
 | |
| }
 | |
| 
 | |
| //CHECK#2
 | |
| if ((eval("false\u000B||\u000Btrue")) !== true) {
 | |
|   throw new Test262Error('#2: (false\\u000B||\\u000Btrue) === true');  
 | |
| }
 | |
| 
 | |
| //CHECK#3
 | |
| if ((eval("false\u000C||\u000Ctrue")) !== true) {
 | |
|   throw new Test262Error('#3: (false\\u000C||\\u000Ctrue) === true');
 | |
| }
 | |
| 
 | |
| //CHECK#4
 | |
| if ((eval("false\u0020||\u0020true")) !== true) {
 | |
|   throw new Test262Error('#4: (false\\u0020||\\u0020true) === true');
 | |
| }
 | |
| 
 | |
| //CHECK#5
 | |
| if ((eval("false\u00A0||\u00A0true")) !== true) {
 | |
|   throw new Test262Error('#5: (false\\u00A0||\\u00A0true) === true');
 | |
| }
 | |
| 
 | |
| //CHECK#6
 | |
| if ((eval("false\u000A||\u000Atrue")) !== true) {
 | |
|   throw new Test262Error('#6: (false\\u000A||\\u000Atrue) === true');  
 | |
| }
 | |
| 
 | |
| //CHECK#7
 | |
| if ((eval("false\u000D||\u000Dtrue")) !== true) {
 | |
|   throw new Test262Error('#7: (false\\u000D||\\u000Dtrue) === true');
 | |
| }
 | |
| 
 | |
| //CHECK#8
 | |
| if ((eval("false\u2028||\u2028true")) !== true) {
 | |
|   throw new Test262Error('#8: (false\\u2028||\\u2028true) === true');
 | |
| }
 | |
| 
 | |
| //CHECK#9
 | |
| if ((eval("false\u2029||\u2029true")) !== true) {
 | |
|   throw new Test262Error('#9: (false\\u2029||\\u2029true) === true');
 | |
| }
 | |
| 
 | |
| 
 | |
| //CHECK#10
 | |
| if ((eval("false\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029||\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029true")) !== true) {
 | |
|   throw new Test262Error('#10: (false\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029||\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029true) === true');
 | |
| }
 |