summaryrefslogtreecommitdiffstats
path: root/dom/bindings/test/test_traceProtos.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/bindings/test/test_traceProtos.html')
-rw-r--r--dom/bindings/test/test_traceProtos.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/dom/bindings/test/test_traceProtos.html b/dom/bindings/test/test_traceProtos.html
deleted file mode 100644
index 17a5cb96d..000000000
--- a/dom/bindings/test/test_traceProtos.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<!--
-https://bugzilla.mozilla.org/show_bug.cgi?id=744772
--->
-<head>
- <meta charset="utf-8">
- <title>Test for Bug 744772</title>
- <script type="application/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=744772">Mozilla Bug 744772</a>
-<p id="display"></p>
-<div id="content" style="display: none">
-
-</div>
-<pre id="test">
-<script type="application/javascript">
-
-/** Test for Bug 744772 **/
-
-SimpleTest.waitForExplicitFinish();
-
-function callback() {
- new XMLHttpRequest().upload;
- ok(true, "Accessing unreferenced DOM interface objects shouldn't crash");
- SimpleTest.finish();
-}
-
-delete window.XMLHttpRequestUpload;
-SpecialPowers.exactGC(callback);
-
-</script>
-</pre>
-</body>
-</html>