Backout e12e84a82fa3 (Bug 787778) for orange

This commit is contained in:
John Schoenick 2012-11-12 17:56:38 -08:00
parent 075160a9e0
commit 89a2b8e5b7
3 changed files with 0 additions and 35 deletions

View File

@ -574,8 +574,6 @@ MOCHITEST_FILES_B = \
test_bug749367.html \
test_bug753278.html \
test_bug761120.html \
test_bug787778.html \
test_bug787778.sjs \
test_XHR_onuploadprogress.html \
test_XHR_anon.html \
file_XHR_anon.sjs \

View File

@ -1,25 +0,0 @@
<!DOCTYPE html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=787778
-->
<html>
<head>
<meta charset="utf-8">
<title>Test for Bug 787778</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="text/javascript">
SimpleTest.waitForExplicitFinish();
window.onload = function() {
window.document.x.src='a';
SimpleTest.executeSoon(function () {
ok(true, "Didn't crash!");
SimpleTest.finish();
});
}
</script>
</head>
<body>
<embed name="x" src="./test_bug787778.sjs">
</body>
</html>

View File

@ -1,8 +0,0 @@
function handleRequest(request, response)
{
response.processAsync();
response.setHeader("Content-Type", "text/plain", false);
response.setHeader("X-Frame-Options", "DENY", false);
response.finish();
}