gecko-dev/docshell/test/test_bug475636.html
Masatoshi Kimura 7be7b11a1c Bug 1342144 - Remove version parameter from the type attribute of script elements. r=jmaher
This patch is generated by the following sed script:
find . ! -wholename '*/.hg*' -type f \( -iname '*.html' -o -iname '*.xhtml' -o -iname '*.xul' -o -iname '*.js' \) -exec sed -i -e 's/\(\(text\|application\)\/javascript\);version=1.[0-9]/\1/g' {} \;

MozReview-Commit-ID: AzhtdwJwVNg

--HG--
extra : rebase_source : e8f90249454c0779d926f87777f457352961748d
2017-02-23 06:10:07 +09:00

53 lines
1.1 KiB
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=475636
Test that refresh to data: URIs don't inherit the principal
-->
<head>
<title>Test for Bug 475636</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body onload="gen.next()">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=475636">Mozilla Bug 475636</a>
<div id="content" style="display: none">
</div>
<iframe id=loader></iframe>
<pre id="test">
<script class="testbody" type="application/javascript">
SimpleTest.waitForExplicitFinish();
gen = runTests();
window.private = 42;
window.addEventListener("message", function(e) {
gen.next(e.data);
});
var url = "file_bug475636.sjs?";
function* runTests() {
var loader = document.getElementById('loader');
for (var testNum = 1; ; ++testNum) {
loader.src = url + testNum;
let res = (yield);
if (res == "done") {
SimpleTest.finish();
return;
}
is(res, "pass");
}
}
</script>
</pre>
</body>
</html>