summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_frame_count_with_synthetic_doc.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/html/test/test_frame_count_with_synthetic_doc.html')
-rw-r--r--dom/html/test/test_frame_count_with_synthetic_doc.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/dom/html/test/test_frame_count_with_synthetic_doc.html b/dom/html/test/test_frame_count_with_synthetic_doc.html
new file mode 100644
index 0000000000..c282ed09d7
--- /dev/null
+++ b/dom/html/test/test_frame_count_with_synthetic_doc.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <script src="/tests/SimpleTest/SimpleTest.js"></script>
+ <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
+ </head>
+ <body>
+ <script>
+ SimpleTest.waitForExplicitFinish();
+ function getWindowLength() {
+ setTimeout(function() {
+ if (window.length) {
+ ok(false, "Synthetic document shouldn't be exposed");
+ }
+
+ // Keep running this check until the test stops
+ getWindowLength();
+ });
+ }
+
+ function addObject() {
+ const object = document.createElement("object");
+ object.data = 'file_bug417760.png';
+ document.body.appendChild(object);
+
+ object.onload = function() {
+ ok(true, "Test passes");
+ SimpleTest.finish();
+ }
+ }
+
+ getWindowLength();
+ addObject();
+ </script>
+ </body>
+</html>