1 <!-- Any copyright is dedicated to the Public Domain.
2 http://creativecommons.org/publicdomain/zero/1.0/ -->
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>
17 <script type=
"text/javascript">
18 /* exported performRequests */
21 function get(address
) {
22 return new Promise(resolve
=> {
23 const xhr
= new XMLHttpRequest();
24 xhr
.open("GET", address
, true);
26 xhr
.onreadystatechange = function() {
27 if (this.readyState
== this.DONE
) {
35 async
function performRequests() {
36 await
get("sjs_content-type-test-server.sjs?fmt=zstd");