1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/webconsole/test/test-webconsole-error-observer.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html dir="ltr" xml:lang="en-US" lang="en-US"> 1.6 + <head> 1.7 + <meta charset="utf-8"> 1.8 + <title>WebConsoleErrorObserver test - bug 611032</title> 1.9 + <!-- Any copyright is dedicated to the Public Domain. 1.10 + http://creativecommons.org/publicdomain/zero/1.0/ --> 1.11 + <script type="text/javascript"> 1.12 + console.log("log Bazzle"); 1.13 + console.info("info Bazzle"); 1.14 + console.warn("warn Bazzle"); 1.15 + console.error("error Bazzle"); 1.16 + 1.17 + var foo = {}; 1.18 + foo.bazBug611032(); 1.19 + </script> 1.20 + <style type="text/css"> 1.21 + .foo { color: cssColorBug611032; } 1.22 + </style> 1.23 + </head> 1.24 + <body> 1.25 + <h1>WebConsoleErrorObserver test</h1> 1.26 + </body> 1.27 +</html> 1.28 +