Test for bug 503473 - Prevent document.write() in the HTML5 parser where prohibited by HTML5. r=bnewman.

--HG--
extra : rebase_source : febd7b2f4fd44960d4a38bcc0d8d8e494833730f
This commit is contained in:
Henri Sivonen 2009-11-04 12:16:40 +02:00
Родитель 98a6ad4f84
Коммит cb2f935b80
3 изменённых файлов: 72 добавлений и 0 удалений

Просмотреть файл

@ -245,6 +245,8 @@ _TEST_FILES = test_bug5141.html \
test_bug505783.html \
test_bug457746.html \
test_bug518104.html \
test_bug503473.html \
file_bug503473-frame.sjs \
bug457746.sjs \
test_CrossSiteXHR.html \
file_CrossSiteXHR_inner.html \

Просмотреть файл

@ -0,0 +1,22 @@
function handleRequest(request, response) {
response.processAsync();
response.setStatusLine(request.httpVersion, 200, "OK");
response.setHeader("Content-Type", "text/html; charset=utf-8", false);
response.write(
'<!DOCTYPE html>' +
'<div></div>' +
'<script>' +
'function doWrite() {' +
' document.write("<p></p>");' +
' parent.done();' +
' document.close();' +
'}' +
'setTimeout(doWrite, 1);' +
'</script>'
);
response.bodyOutputStream.flush();
// leave the stream open
}

Просмотреть файл

@ -0,0 +1,48 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=503473
-->
<head>
<title>Test for Bug 503473</title>
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
<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=503473">Mozilla Bug 503473</a>
<p id="display"></p>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 503473 **/
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var prefs = Components.classes["@mozilla.org/preferences-service;1"]
.getService(Components.interfaces.nsIPrefBranch);
var gOriginalHtml5Pref = prefs.getBoolPref("html5.enable");
prefs.setBoolPref("html5.enable", true);
SimpleTest.waitForExplicitFinish();
function done() {
var iframe = document.getElementById("iframe");
var divs = iframe.contentWindow.document.getElementsByTagName("div").length;
is(divs, 0, "Div wasn't blown away.")
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var prefs = Components.classes["@mozilla.org/preferences-service;1"]
.getService(Components.interfaces.nsIPrefBranch);
prefs.setBoolPref("html5.enable", gOriginalHtml5Pref);
SimpleTest.finish();
}
</script>
</pre>
<div id="content" style="display: none">
<iframe id='iframe' src="file_bug503473-frame.sjs">
</iframe>
</div>
</body>
</html>