Sign in
chromium
/
devtools
/
devtools-frontend.git
/
HEAD
/
.
/
test
/
e2e
/
resources
/
network
/
xhr.html
blob: 8df26922a3dce8e6be3ff4d35df0b221ade5a1fb [
file
] [
log
] [
blame
]
<!--
Copyright 2020 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<script>
const
req
=
new
XMLHttpRequest
();
req
.
open
(
'get'
,
'image.svg'
,
true
);
req
.
send
();
</script>