auto merge of #4005 : nkdalmia/servo/master, r=jdm

This will enable the web platform test in the webstorage folder.
This commit is contained in:
bors-servo 2014-11-16 10:30:29 -07:00
commit 3a0b12f2c0
48 changed files with 334 additions and 0 deletions

View file

@ -87,3 +87,5 @@ skip: true
skip: false
[cors]
skip: true
[webstorage]
skip: false

View file

@ -0,0 +1,3 @@
[event_constructor.html]
type: testharness
expected: TIMEOUT

View file

@ -0,0 +1,3 @@
[event_constructor_js.html]
type: testharness
expected: TIMEOUT

View file

@ -0,0 +1,5 @@
[event_local_key.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[event_local_newvalue.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[event_local_oldvalue.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[event_local_storagearea.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,3 @@
[event_local_storageeventinit.html]
type: testharness
expected: TIMEOUT

View file

@ -0,0 +1,5 @@
[event_local_url.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[event_session_key.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[event_session_newvalue.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[event_session_oldvalue.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,3 @@
[event_session_storagearea.html]
type: testharness
expected: TIMEOUT

View file

@ -0,0 +1,3 @@
[event_session_storageeventinit.html]
type: testharness
expected: TIMEOUT

View file

@ -0,0 +1,5 @@
[event_session_url.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,80 @@
[idlharness.html]
type: testharness
[Window interface: attribute sessionStorage]
expected: FAIL
[Window interface: attribute localStorage]
expected: FAIL
[Storage interface object length]
expected: FAIL
[Storage interface: operation setItem(DOMString,DOMString)]
expected: FAIL
[Storage interface: operation removeItem(DOMString)]
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
[StorageEvent interface object length]
expected: FAIL
[StorageEvent interface: existence and properties of interface prototype object]
expected: FAIL
[StorageEvent interface: existence and properties of interface prototype object\'s "constructor" property]
expected: FAIL
[StorageEvent interface: attribute key]
expected: FAIL
[StorageEvent interface: attribute oldValue]
expected: FAIL
[StorageEvent interface: attribute newValue]
expected: FAIL
[StorageEvent interface: attribute url]
expected: FAIL
[StorageEvent interface: attribute storageArea]
expected: FAIL

View file

@ -0,0 +1,35 @@
[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 () { sessionStorage.key(); }".]
expected: FAIL
[Should throw TypeError for function "function () { sessionStorage.getItem(); }".]
expected: FAIL
[Should throw TypeError for function "function () { sessionStorage.setItem(); }".]
expected: FAIL
[Should throw TypeError for function "function () { sessionStorage.setItem("a"); }".]
expected: FAIL
[Should throw TypeError for function "function () { sessionStorage.removeItem(); }".]
expected: FAIL
[Should throw TypeError for function "function () { new StorageEvent(); }".]
expected: FAIL

View file

@ -0,0 +1,3 @@
[storage_local_builtins.html]
type: testharness
expected: TIMEOUT

View file

@ -0,0 +1,5 @@
[storage_local_clear.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_clear_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_getitem.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_getitem_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,8 @@
[storage_local_in_js.html]
type: testharness
[Web Storage]
expected: FAIL
[Web Storage 1]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_index_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_key.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_length.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_length_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_removeitem.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_removeitem_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_security.html]
type: testharness
[storage local security test]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_setitem.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_setitem_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_local_setitem_quotaexceedederr.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,3 @@
[storage_session_builtins.html]
type: testharness
expected: TIMEOUT

View file

@ -0,0 +1,5 @@
[storage_session_clear.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_clear_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_getitem.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_getitem_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,8 @@
[storage_session_in_js.html]
type: testharness
[Web Storage]
expected: FAIL
[Web Storage 1]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_index_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_key.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_length.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_length_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_removeitem.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_removeitem_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_setitem.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_setitem_js.html]
type: testharness
[Web Storage]
expected: FAIL

View file

@ -0,0 +1,5 @@
[storage_session_setitem_quotaexceedederr.html]
type: testharness
[Web Storage]
expected: FAIL