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 |
11 TEST COMPLETE | 11 TEST COMPLETE |
12 | 12 |
13 | 13 |
14 -------- | 14 -------- |
15 Frame: '<!--framePath //<!--frame0-->-->' | 15 Frame: '<!--framePath //<!--frame0-->-->' |
16 -------- | 16 -------- |
17 PASS window.openDatabase('SandboxedIframeStorageDisallowed', '1.0', '', 1) threw
exception Error: SecurityError: DOM Exception 18. | 17 PASS window.openDatabase('SandboxedIframeStorageDisallowed', '1.0', '', 1) threw
exception SecurityError: An attempt was made to break through the security poli
cy of the user agent.. |
18 PASS window.localStorage threw exception Error: SecurityError: DOM Exception 18. | 18 PASS window.localStorage threw exception SecurityError: An attempt was made to b
reak through the security policy of the user agent.. |
19 PASS window.sessionStorage threw exception Error: SecurityError: DOM Exception 1
8. | 19 PASS window.sessionStorage threw exception SecurityError: An attempt was made to
break through the security policy of the user agent.. |
20 | 20 |
21 | 21 |
22 -------- | 22 -------- |
23 Frame: '<!--framePath //<!--frame1-->-->' | 23 Frame: '<!--framePath //<!--frame1-->-->' |
24 -------- | 24 -------- |
25 PASS window.openDatabase('SandboxedIframeStorageAllowed', '1.0', '', 1) != null
is true | 25 PASS window.openDatabase('SandboxedIframeStorageAllowed', '1.0', '', 1) != null
is true |
26 PASS window.localStorage != null is true | 26 PASS window.localStorage != null is true |
27 PASS window.sessionStorage != null is true | 27 PASS window.sessionStorage != null is true |
28 | 28 |
OLD | NEW |