OLD | NEW |
1 This test verifies that a sandboxed iframe does not have access to any session s
torage, local storage or database. | 1 This test verifies that a sandboxed iframe does not have access to any session s
torage, local storage or database. |
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 Most of the PASS messages appear in frames, presented by DumpRenderTree after th
e main window. | 6 Most of the PASS messages appear in frames, presented by DumpRenderTree after th
e main window. |
7 | 7 |
8 | 8 |
9 PASS successfullyParsed is true | 9 PASS successfullyParsed is true |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 PASS window.indexedDB.open('foo') threw exception "SecurityError: Failed to exec
ute 'open' on 'IDBFactory': access to the Indexed Database API is denied in this
context.". | 22 PASS window.indexedDB.open('foo') threw exception "SecurityError: Failed to exec
ute 'open' on 'IDBFactory': access to the Indexed Database API is denied in this
context.". |
23 PASS window.indexedDB.deleteDatabase('foo') threw exception "SecurityError: Fail
ed to execute 'deleteDatabase' on 'IDBFactory': access to the Indexed Database A
PI is denied in this context.". | 23 PASS window.indexedDB.deleteDatabase('foo') threw exception "SecurityError: Fail
ed to execute 'deleteDatabase' on 'IDBFactory': access to the Indexed Database A
PI is denied in this context.". |
24 PASS window.localStorage threw exception "SecurityError: Access to 'localStorage
' is denied for this document. The document is sandboxed and lacks the 'allow-sa
me-origin' flag.". | 24 PASS window.localStorage threw exception "SecurityError: Access to 'localStorage
' is denied for this document. The document is sandboxed and lacks the 'allow-sa
me-origin' flag.". |
25 PASS window.sessionStorage threw exception "SecurityError: Access to 'sessionSto
rage' is denied for this document. The document is sandboxed and lacks the 'allo
w-same-origin' flag.". | 25 PASS window.sessionStorage threw exception "SecurityError: Access to 'sessionSto
rage' is denied for this document. The document is sandboxed and lacks the 'allo
w-same-origin' flag.". |
26 PASS document.cookie threw exception "SecurityError: Access to 'cookie' is denie
d for this document. The document is sandboxed and lacks the 'allow-same-origin'
flag.". | 26 PASS document.cookie threw exception "SecurityError: Access to 'cookie' is denie
d for this document. The document is sandboxed and lacks the 'allow-same-origin'
flag.". |
27 | 27 |
28 | 28 |
29 -------- | 29 -------- |
30 Frame: '<!--framePath //<!--frame1-->-->' | 30 Frame: '<!--framePath //<!--frame1-->-->' |
31 -------- | 31 -------- |
| 32 PASS successfullyParsed is true |
| 33 |
| 34 TEST COMPLETE |
32 PASS window.openDatabase('SandboxedIframeStorageAllowed', '1.0', '', 1) != null
is true | 35 PASS window.openDatabase('SandboxedIframeStorageAllowed', '1.0', '', 1) != null
is true |
33 PASS window.localStorage != null is true | 36 PASS window.localStorage != null is true |
34 PASS window.sessionStorage != null is true | 37 PASS window.sessionStorage != null is true |
35 PASS document.cookie != null is true | 38 PASS document.cookie != null is true |
36 PASS successfullyParsed is true | |
37 | 39 |
38 TEST COMPLETE | |
39 | |
OLD | NEW |