summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/test-mutation.html
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/webconsole/test/test-mutation.html')
-rw-r--r--devtools/client/webconsole/test/test-mutation.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/devtools/client/webconsole/test/test-mutation.html b/devtools/client/webconsole/test/test-mutation.html
new file mode 100644
index 000000000..e80933b06
--- /dev/null
+++ b/devtools/client/webconsole/test/test-mutation.html
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML>
+<html dir="ltr" xml:lang="en-US" lang="en-US">
+ <head>
+ <meta charset="utf-8">
+ <title>Console mutation test</title>
+ <script>
+ window.onload = function (){
+ var node = document.createElement("div");
+ document.body.appendChild(node);
+ };
+ </script>
+ </head>
+ <body>
+ <h1>Heads Up Display DOM Mutation Test Page</h1>
+ </body>
+</html>