diff options
Diffstat (limited to 'devtools/client/webconsole/test/test-console-clear.html')
-rw-r--r-- | devtools/client/webconsole/test/test-console-clear.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/devtools/client/webconsole/test/test-console-clear.html b/devtools/client/webconsole/test/test-console-clear.html new file mode 100644 index 000000000..8009db858 --- /dev/null +++ b/devtools/client/webconsole/test/test-console-clear.html @@ -0,0 +1,16 @@ +<!DOCTYPE HTML> +<html dir="ltr" xml:lang="en-US" lang="en-US"><head> + <meta charset="utf-8"> + <title>Console.clear() tests</title> + <script type="text/javascript"> + console.log("log1"); + console.log("log2"); + console.clear(); + + window.objFromPage = { a: 1 }; + </script> + </head> + <body> + <h1 id="header">Clear Demo</h1> + </body> +</html> |