File: S11.11.1_A1.js

package info (click to toggle)
qtdeclarative-opensource-src-gles 5.15.17%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 258,992 kB
  • sloc: javascript: 512,415; cpp: 497,385; xml: 8,892; python: 3,304; ansic: 2,764; sh: 206; makefile: 46; php: 27
file content (61 lines) | stat: -rw-r--r-- 1,702 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// 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 LogicalANDExpression and "&&" or
    between "&&" and BitwiseORExpression are allowed
es5id: 11.11.1_A1
description: Checking by using eval
---*/

//CHECK#1
if ((eval("true\u0009&&\u0009true")) !== true) {
  $ERROR('#1: (true\\u0009&&\\u0009true) === true');
}

//CHECK#2
if ((eval("true\u000B&&\u000Btrue")) !== true) {
  $ERROR('#2: (true\\u000B&&\\u000Btrue) === true');  
}

//CHECK#3
if ((eval("true\u000C&&\u000Ctrue")) !== true) {
  $ERROR('#3: (true\\u000C&&\\u000Ctrue) === true');
}

//CHECK#4
if ((eval("true\u0020&&\u0020true")) !== true) {
  $ERROR('#4: (true\\u0020&&\\u0020true) === true');
}

//CHECK#5
if ((eval("true\u00A0&&\u00A0true")) !== true) {
  $ERROR('#5: (true\\u00A0&&\\u00A0true) === true');
}

//CHECK#6
if ((eval("true\u000A&&\u000Atrue")) !== true) {
  $ERROR('#6: (true\\u000A&&\\u000Atrue) === true');  
}

//CHECK#7
if ((eval("true\u000D&&\u000Dtrue")) !== true) {
  $ERROR('#7: (true\\u000D&&\\u000Dtrue) === true');
}

//CHECK#8
if ((eval("true\u2028&&\u2028true")) !== true) {
  $ERROR('#8: (true\\u2028&&\\u2028true) === true');
}

//CHECK#9
if ((eval("true\u2029&&\u2029true")) !== true) {
  $ERROR('#9: (true\\u2029&&\\u2029true) === true');
}


//CHECK#10
if ((eval("true\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029&&\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029true")) !== true) {
  $ERROR('#10: (true\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029&&\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029true) === true');
}