1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=351633
-->
<head>
<title>Test for Bug 351633</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=351633">Mozilla Bug 351633</a>
<pre id="test">
<script class="testbody" type="text/javascript">
var passJSUrl;
var passJSUrl2;
var finishTest;
/** Test for Bug 351633 **/
function runTests() {
$("testframe1").onload = test1;
// test2 will be called as finishTest
$("testframe3").onload = test3;
$("testframe4").onload = test4;
$("testframe5").onload = test5;
passJSUrl = false;
window.testframe1.location.href =
'javascript:"<script>parent.passJSUrl = true</' + 'script>"'
}
function test1() {
is(passJSUrl, true, "Script should have run in child");
passJSUrl = false;
passJSUrl2 = true;
finishTest = test2;
window.testframe2.location.href =
'javascript: location = "pass.html"; ' +
'"<script>parent.passJSUrl2 = false</' + 'script>"'
}
function test2() {
is(passJSUrl, true, "pass.html should have loaded");
is(passJSUrl2, true, "<script> should not have run");
passJSUrl = true;
passJSUrl2 = false;
finishTest = function() { };
window.testframe3.location.href = 'fail.html';
window.testframe3.location.href =
'javascript: "<script>parent.passJSUrl2 = true</' + 'script>"'
}
function test3() {
if (window.testframe3.location.href == 'fail.html') {
// Ignore this call; we expect the javascript: URI to still load. Note
// that whether onload fires for the fail.html load before the event for
// the javascript: URI execution runs is a timing issue, so we can't depend
// on the ordering.
return;
}
// Since fail.html could have loaded, the value of passJSUrl here is random
// Something is bogus here. Maybe we're ending up with the href being the
// javascript: URI even though it hasn't run yet? Or something? In any
// case, this test fails on some tinderboxen but not others.... Need to
// sort it out.
// is(passJSUrl2, true, "<script> should have run");
passJSUrl = false;
passJSUrl2 = true;
finishTest = function() { };
window.testframe4.location.href = 'pass.html';
window.testframe4.location.href =
'javascript:void("<script>parent.passJSUrl2 = false</' + 'script>")';
}
function test4() {
is(passJSUrl, true, "pass.html should have loaded again");
is(passJSUrl2, true, "<script> should not have run in void");
passJSUrl = false;
passJSUrl2 = true;
finishTest = function() { };
window.testframe5.location.href =
'javascript:"<script>parent.passJSUrl2 = false</' + 'script>"';
window.testframe5.location.href = 'pass.html';
}
function test5() {
is(passJSUrl, true, "pass.html should have loaded yet again");
is(passJSUrl2, true, "javascript: load should have been canceled");
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
addLoadEvent(runTests);
</script>
</pre>
<p id="display">
<iframe name="testframe1" id="testframe1"></iframe>
<iframe name="testframe2" id="testframe2"></iframe>
<iframe name="testframe3" id="testframe3"></iframe>
<iframe name="testframe4" id="testframe4"></iframe>
<iframe name="testframe5" id="testframe5"></iframe>
</p>
<div id="content" style="display: none">
</div>
</body>
</html>
|