Bug 1924993 - [devtools] Debugger tests wait before typing in conditional panel r...
[gecko.git] / devtools / client / netmonitor / test / html_statistics-test-page.html
bloba8afabe97515a80ed1f373767772219cc7a523be
1 <!-- Any copyright is dedicated to the Public Domain.
2 http://creativecommons.org/publicdomain/zero/1.0/ -->
3 <!doctype html>
5 <html>
6 <head>
7 <meta charset="utf-8"/>
8 <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
9 <meta http-equiv="Pragma" content="no-cache" />
10 <meta http-equiv="Expires" content="0" />
11 <title>Network Monitor test page</title>
12 </head>
14 <body>
15 <p>Statistics test</p>
17 <script type="text/javascript">
18 "use strict";
20 function get(address) {
21 const xhr = new XMLHttpRequest();
22 xhr.open("GET", address, true);
23 xhr.send(null);
26 get("sjs_content-type-test-server.sjs?sts=304&fmt=txt");
27 get("sjs_content-type-test-server.sjs?sts=304&fmt=xml");
28 get("sjs_content-type-test-server.sjs?sts=304&fmt=html");
29 get("sjs_content-type-test-server.sjs?sts=304&fmt=css");
30 get("sjs_content-type-test-server.sjs?sts=304&fmt=js");
31 get("sjs_content-type-test-server.sjs?sts=304&fmt=json");
32 get("sjs_content-type-test-server.sjs?sts=304&fmt=jsonp");
33 get("sjs_content-type-test-server.sjs?sts=304&fmt=font");
34 get("sjs_content-type-test-server.sjs?sts=304&fmt=image");
35 get("sjs_content-type-test-server.sjs?sts=304&fmt=audio");
36 get("sjs_content-type-test-server.sjs?sts=304&fmt=video");
37 get("sjs_content-type-test-server.sjs?sts=304&fmt=flash");
38 get("test-image.png?v=" + Math.random());
39 </script>
40 </body>
42 </html>