mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
localStorage shim, fixes #5195
This commit is contained in:
parent
1a9679857a
commit
323baf92db
27 changed files with 112 additions and 172 deletions
|
@ -8367,9 +8367,6 @@
|
|||
[Window interface: calling createImageBitmap(ImageBitmapSource,long,long,long,long) on window with too few arguments must throw TypeError]
|
||||
expected: FAIL
|
||||
|
||||
[Window interface: window must inherit property "localStorage" with the proper type (124)]
|
||||
expected: FAIL
|
||||
|
||||
[BarProp interface: existence and properties of interface object]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
[event_local_key.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
expected: TIMEOUT
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
[event_local_newvalue.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
expected: TIMEOUT
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
[event_local_oldvalue.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
||||
expected: TIMEOUT
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
[event_local_storagearea.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
||||
expected: TIMEOUT
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
[event_local_url.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
||||
expected: TIMEOUT
|
||||
|
|
|
@ -6,42 +6,6 @@
|
|||
[Storage interface object length]
|
||||
expected: FAIL
|
||||
|
||||
[Storage must be primary interface of window.localStorage]
|
||||
expected: FAIL
|
||||
|
||||
[Stringification of window.localStorage]
|
||||
expected: FAIL
|
||||
|
||||
[Storage interface: window.localStorage must inherit property "length" with the proper type (0)]
|
||||
expected: FAIL
|
||||
|
||||
[Storage interface: window.localStorage must inherit property "key" with the proper type (1)]
|
||||
expected: FAIL
|
||||
|
||||
[Storage interface: calling key(unsigned long) on window.localStorage with too few arguments must throw TypeError]
|
||||
expected: FAIL
|
||||
|
||||
[Storage interface: window.localStorage must inherit property "getItem" with the proper type (2)]
|
||||
expected: FAIL
|
||||
|
||||
[Storage interface: calling getItem(DOMString) on window.localStorage with too few arguments must throw TypeError]
|
||||
expected: FAIL
|
||||
|
||||
[Storage interface: window.localStorage must inherit property "setItem" with the proper type (3)]
|
||||
expected: FAIL
|
||||
|
||||
[Storage interface: calling setItem(DOMString,DOMString) on window.localStorage with too few arguments must throw TypeError]
|
||||
expected: FAIL
|
||||
|
||||
[Storage interface: window.localStorage must inherit property "removeItem" with the proper type (4)]
|
||||
expected: FAIL
|
||||
|
||||
[Storage interface: calling removeItem(DOMString) on window.localStorage with too few arguments must throw TypeError]
|
||||
expected: FAIL
|
||||
|
||||
[Storage interface: window.localStorage must inherit property "clear" with the proper type (5)]
|
||||
expected: FAIL
|
||||
|
||||
[StorageEvent interface: existence and properties of interface object]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,19 +1,5 @@
|
|||
[missing_arguments.html]
|
||||
type: testharness
|
||||
[Should throw TypeError for function "function () { localStorage.key(); }".]
|
||||
expected: FAIL
|
||||
|
||||
[Should throw TypeError for function "function () { localStorage.getItem(); }".]
|
||||
expected: FAIL
|
||||
|
||||
[Should throw TypeError for function "function () { localStorage.setItem(); }".]
|
||||
expected: FAIL
|
||||
|
||||
[Should throw TypeError for function "function () { localStorage.setItem("a"); }".]
|
||||
expected: FAIL
|
||||
|
||||
[Should throw TypeError for function "function () { localStorage.removeItem(); }".]
|
||||
expected: FAIL
|
||||
|
||||
[Should throw TypeError for function "function () { new StorageEvent(); }".]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
[storage_local_builtins.html]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
[storage_local_clear.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[storage_local_clear_js.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[storage_local_getitem.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[storage_local_getitem_js.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
|
@ -1,8 +1,5 @@
|
|||
[storage_local_in_js.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
||||
[Web Storage 1]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
[storage_local_index_js.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
[Web Storage 3]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[storage_local_key.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
[Web Storage 3]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
[storage_local_length.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[storage_local_length_js.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[storage_local_removeitem.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[storage_local_removeitem_js.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
[storage_local_setitem.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
expected: FAIL
|
||||
|
|
@ -1,5 +1,14 @@
|
|||
[storage_local_setitem_js.html]
|
||||
type: testharness
|
||||
[Web Storage]
|
||||
[Web Storage 4]
|
||||
expected: FAIL
|
||||
[Web Storage 6]
|
||||
expected: FAIL
|
||||
[Web Storage 7]
|
||||
expected: FAIL
|
||||
[Web Storage 8]
|
||||
expected: FAIL
|
||||
[Web Storage 9]
|
||||
expected: FAIL
|
||||
[Web Storage 10]
|
||||
expected: FAIL
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue