OLD | NEW |
1 This tests the constructor for the StorageEvent DOM class. | 1 This tests the constructor for the StorageEvent DOM class. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 PASS new StorageEvent('eventType').bubbles is false | 6 PASS new StorageEvent('eventType').bubbles is false |
7 PASS new StorageEvent('eventType').cancelable is false | 7 PASS new StorageEvent('eventType').cancelable is false |
8 PASS new StorageEvent('eventType').key is "" | 8 PASS new StorageEvent('eventType').key is "" |
9 PASS new StorageEvent('eventType').oldValue is null | 9 PASS new StorageEvent('eventType').oldValue is null |
10 PASS new StorageEvent('eventType').newValue is null | 10 PASS new StorageEvent('eventType').newValue is null |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 PASS new StorageEvent('eventType', { storageArea: {valueOf: function () { return
window; } } }).storageArea == window is false | 83 PASS new StorageEvent('eventType', { storageArea: {valueOf: function () { return
window; } } }).storageArea == window is false |
84 PASS new StorageEvent('eventType', { get storageArea() { return 123; } }).storag
eArea is null | 84 PASS new StorageEvent('eventType', { get storageArea() { return 123; } }).storag
eArea is null |
85 PASS new StorageEvent('eventType', { get storageArea() { throw 'StorageEvent Err
or'; } }) threw exception StorageEvent Error. | 85 PASS new StorageEvent('eventType', { get storageArea() { throw 'StorageEvent Err
or'; } }) threw exception StorageEvent Error. |
86 PASS new StorageEvent('eventType', { bubbles: true, cancelable: false, key: 'abc
', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).bu
bbles is true | 86 PASS new StorageEvent('eventType', { bubbles: true, cancelable: false, key: 'abc
', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).bu
bbles is true |
87 PASS new StorageEvent('eventType', { bubbles: false, cancelable: true, key: 'abc
', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).ca
ncelable is true | 87 PASS new StorageEvent('eventType', { bubbles: false, cancelable: true, key: 'abc
', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).ca
ncelable is true |
88 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc'
, oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).key
is "abc" | 88 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc'
, oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).key
is "abc" |
89 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc'
, oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).old
Value is "def" | 89 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc'
, oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).old
Value is "def" |
90 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc'
, oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).new
Value is "ghi" | 90 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc'
, oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).new
Value is "ghi" |
91 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc'
, oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).url
is "jkl" | 91 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc'
, oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).url
is "jkl" |
92 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc'
, oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).sto
rageArea is localStorage | 92 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc'
, oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).sto
rageArea is localStorage |
| 93 PASS successfullyParsed is true |
93 | 94 |
| 95 TEST COMPLETE |
| 96 |
OLD | NEW |