tizen beta release
[profile/ivi/webkit-efl.git] / LayoutTests / fast / js / delete-syntax-expected.txt
1 This test checks whether various forms of delete expression are allowed.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
4
5
6 PASS delete x is true
7 PASS delete window.x is true
8 PASS delete window["x"] is true
9 PASS delete (x) is true
10 PASS delete (window.x) is true
11 PASS delete (window["x"]) is true
12 PASS (y, delete x) is true
13 PASS delete ((x)) is true
14 PASS delete ((window.x)) is true
15 PASS delete ((window["x"])) is true
16 PASS delete (y, x) is true
17 PASS delete (true ? x : y) is true
18 PASS delete nonexistent is true
19 PASS delete window.nonexistent is true
20 PASS delete window["nonexistent"] is true
21 PASS delete (nonexistent) is true
22 PASS delete (window.nonexistent) is true
23 PASS delete (window["nonexistent"]) is true
24 PASS delete "x" is true
25 PASS delete (2 + 3) is true
26 PASS Math.cos is mathCos
27 PASS Math.sin is undefined
28 PASS Math.tan is null
29 PASS RegExp.prototype.compile is regExpPrototypeCompile
30 PASS RegExp.prototype.exec is undefined
31 PASS RegExp.prototype.test is null
32 PASS Object.getOwnPropertyNames(Object.prototype).indexOf('__defineSetter__') is -1
33 PASS successfullyParsed is true
34
35 TEST COMPLETE
36