1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/webconsole/test/test-observe-http-ajax.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html dir="ltr" xml:lang="en-US" lang="en-US"><head> 1.6 + <meta charset="utf-8"> 1.7 + <title>Console HTTP test page</title> 1.8 + <script type="text/javascript"> 1.9 + function test() { 1.10 + var xmlhttp = new XMLHttpRequest(); 1.11 + xmlhttp.open('get', 'test-data.json', false); 1.12 + xmlhttp.send(null); 1.13 + } 1.14 + </script> 1.15 + </head> 1.16 + <body onload="test();"> 1.17 + <h1>Heads Up Display HTTP & AJAX Test Page</h1> 1.18 + <h2>This page fires an ajax request so we can see the http logging of the console</h2> 1.19 + </body> 1.20 +</html>