OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <script src="resources/cross-frame-access.js"></script> | |
4 <script> | |
5 if (window.testRunner) { | |
6 testRunner.dumpAsText(); | |
7 testRunner.dumpChildFramesAsText(); | |
8 testRunner.waitUntilDone(); | |
9 } | |
10 | |
11 onload = function() | |
12 { | |
13 // Add manual run buttons if the browser does not support window.pos
tMessage | |
14 if (!window.postMessage) { | |
15 log("YOUR BROWSER DOES NOT SUPPORT window.postMessage"); | |
16 log("To run this test manually, first click the button titled 'S
tep 1 - Set Test' in this frame."); | |
17 log("Then click the button in the sub frame titled 'Step 2 - Set
Check' to finish the test.\n"); | |
18 | |
19 var button = document.createElement("button"); | |
20 button.appendChild(document.createTextNode("Step 1 - Set Test"))
; | |
21 button.onclick = setTest; | |
22 document.body.appendChild(button); | |
23 } | |
24 } | |
25 | |
26 receiver = function(e) | |
27 { | |
28 if (e.data == "storedOldValuesComplete") | |
29 setTest(); | |
30 } | |
31 addEventListener('message', receiver, false); | |
32 | |
33 setTest = function() | |
34 { | |
35 window.targetWindow = frames[0]; | |
36 | |
37 try { targetWindow.history.back = "FAIL!! CUSTOM back"; } catch(e)
{ log(e); } | |
38 try { targetWindow.history.forward = "FAIL!! CUSTOM forward"; } cat
ch(e) { log(e); } | |
39 try { targetWindow.history.go = "FAIL!! CUSTOM go"; } catch(e) { lo
g(e); } | |
40 try { targetWindow.history.toString = "FAIL!! CUSTOM toString"; } c
atch(e) { log(e); } | |
41 try { targetWindow.history.length = "FAIL!! CUSTOM length"; } catch
(e) { log(e); } | |
42 | |
43 try { targetWindow.history.customAttribute = "FAIL!! CUSTOM customAt
tribute"; } catch(e) { log(e); } | |
44 | |
45 if (window.postMessage) | |
46 targetWindow.postMessage("settingValuesComplete", "*"); | |
47 else | |
48 log("\nSet Test complete! Click button entitled 'Step 2 - Set C
heck' to finish the test."); | |
49 } | |
50 </script> | |
51 </head> | |
52 <body> | |
53 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for
-history-put-test.html"></iframe> | |
54 <pre id="console"></pre> | |
55 </body> | |
56 </html> | |
OLD | NEW |