mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backout e12e84a82fa3 (Bug 787778) for orange
This commit is contained in:
parent
075160a9e0
commit
89a2b8e5b7
@ -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 \
|
||||
|
@ -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>
|
@ -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();
|
||||
}
|
Loading…
Reference in New Issue
Block a user