| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 PASS: navigator == marker should be false and is. | 71 PASS: navigator == marker should be false and is. |
| 72 PASS: eval('navigator == marker') should be false 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 false and is. | 81 PASS: screen == marker should be true and is. |
| 82 PASS: eval('screen == marker') should be false and is. | 82 PASS: eval('screen == marker') should be true and is. |
| 83 PASS: history == marker should be false and is. | 83 PASS: history == marker should be false and is. |
| 84 PASS: eval('history == marker') should be false and is. | 84 PASS: eval('history == marker') should be false and is. |
| 85 ----- | 85 ----- |
| 86 PASS: frameElement == marker should be false and is. | 86 PASS: frameElement == marker should be false and is. |
| 87 PASS: eval('frameElement == marker') should be false and is. | 87 PASS: eval('frameElement == marker') should be false and is. |
| 88 PASS: pageXOffset == marker should be false and is. | 88 PASS: pageXOffset == marker should be true and is. |
| 89 PASS: eval('pageXOffset == marker') should be false and is. | 89 PASS: eval('pageXOffset == marker') should be true and is. |
| 90 PASS: pageYOffset == marker should be false and is. | 90 PASS: pageYOffset == marker should be true and is. |
| 91 PASS: eval('pageYOffset == marker') should be false and is. | 91 PASS: eval('pageYOffset == marker') should be true and is. |
| 92 PASS: closed == marker should be false and is. | 92 PASS: closed == marker should be false and is. |
| 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 |