| OLD | NEW |
| 1 This page tests var declarations that attempt to shadow interesting global prope
rties in interesting ways. Bug 16644. | 1 This page tests var declarations that attempt to shadow interesting global prope
rties in interesting ways. Bug 16644. |
| 2 | 2 |
| 3 If the test passes, you'll see a series of PASS messages below. | 3 If the test passes, you'll see a series of PASS messages below. |
| 4 | 4 |
| 5 PASS: Node == undefined should be false and is. | 5 PASS: Node == undefined should be false and is. |
| 6 PASS: eval('Node == undefined') should be false and is. | 6 PASS: eval('Node == undefined') should be false and is. |
| 7 PASS: Element == undefined should be false and is. | 7 PASS: Element == undefined should be false and is. |
| 8 PASS: eval('Element == undefined') should be false and is. | 8 PASS: eval('Element == undefined') should be false and is. |
| 9 FAIL: toString == undefined should be false but instead is true. | 9 FAIL: toString == undefined should be false but instead is true. |
| 10 FAIL: eval('toString == undefined') should be false but instead is true. | 10 FAIL: eval('toString == undefined') should be false but instead is true. |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 PASS: frames == marker should be true and is. | 61 PASS: frames == marker should be true and is. |
| 62 PASS: eval('frames == marker') should be true and is. | 62 PASS: eval('frames == marker') should be true and is. |
| 63 PASS: opener == marker should be true and is. | 63 PASS: opener == marker should be true and is. |
| 64 PASS: eval('opener == marker') should be true and is. | 64 PASS: eval('opener == marker') should be true and is. |
| 65 PASS: parent == marker should be true and is. | 65 PASS: parent == marker should be true and is. |
| 66 PASS: eval('parent == marker') should be true and is. | 66 PASS: eval('parent == marker') should be true and is. |
| 67 PASS: devicePixelRatio == marker should be true and is. | 67 PASS: devicePixelRatio == marker should be true and is. |
| 68 PASS: eval('devicePixelRatio == marker') should be true and is. | 68 PASS: eval('devicePixelRatio == marker') should be true and is. |
| 69 PASS: devicePixelRatio == marker should be true and is. | 69 PASS: devicePixelRatio == marker should be true and is. |
| 70 PASS: eval('devicePixelRatio == marker') should be true and is. | 70 PASS: eval('devicePixelRatio == marker') should be true and is. |
| 71 PASS: navigator == marker should be true and is. | 71 PASS: navigator == marker should be false and is. |
| 72 PASS: eval('navigator == marker') should be true and is. | 72 PASS: eval('navigator == marker') should be false and is. |
| 73 PASS: clientInformation == marker should be true and is. | 73 PASS: clientInformation == marker should be true and is. |
| 74 PASS: eval('clientInformation == marker') should be true and is. | 74 PASS: eval('clientInformation == marker') should be true and is. |
| 75 PASS: status == marker should be true and is. | 75 PASS: status == marker should be true and is. |
| 76 PASS: eval('status == marker') should be true and is. | 76 PASS: eval('status == marker') should be true and is. |
| 77 PASS: defaultStatus == marker should be true and is. | 77 PASS: defaultStatus == marker should be true and is. |
| 78 PASS: eval('defaultStatus == marker') should be true and is. | 78 PASS: eval('defaultStatus == marker') should be true and is. |
| 79 PASS: defaultstatus == marker should be true and is. | 79 PASS: defaultstatus == marker should be true and is. |
| 80 PASS: eval('defaultstatus == marker') should be true and is. | 80 PASS: eval('defaultstatus == marker') should be true and is. |
| 81 PASS: screen == marker should be true and is. | 81 PASS: screen == marker should be true and is. |
| 82 PASS: eval('screen == marker') should be true and is. | 82 PASS: eval('screen == marker') should be true and is. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 93 PASS: eval('closed == marker') should be false and is. | 93 PASS: eval('closed == marker') should be false and is. |
| 94 PASS: window == marker should be false and is. | 94 PASS: window == marker should be false and is. |
| 95 PASS: eval('window == marker') should be false and is. | 95 PASS: eval('window == marker') should be false and is. |
| 96 PASS: document == marker should be false and is. | 96 PASS: document == marker should be false and is. |
| 97 PASS: eval('document == marker') should be false and is. | 97 PASS: eval('document == marker') should be false and is. |
| 98 PASS: crypto == marker should be false and is. | 98 PASS: crypto == marker should be false and is. |
| 99 PASS: eval('crypto == marker') should be false and is. | 99 PASS: eval('crypto == marker') should be false and is. |
| 100 PASS: top == marker should be false and is. | 100 PASS: top == marker should be false and is. |
| 101 PASS: eval('top == marker') should be false and is. | 101 PASS: eval('top == marker') should be false and is. |
| 102 | 102 |
| OLD | NEW |