Sign in
webkit
/
WebKit
/
cd096af6c6240b3ceab5d977df03c24b8d5fa8d7
/
.
/
LayoutTests
/
inspector
/
worker
/
resources
/
resource-utilities.js
blob: b2a08cfc1ceac93cc6e33eb014c8a56325ced149 [
file
] [
log
] [
blame
]
function
loadResourceXHR
(
path
)
{
let xhr
=
new
XMLHttpRequest
;
xhr
.
open
(
"GET"
,
path
,
true
);
xhr
.
send
();
}
function
loadResourceFetch
(
path
)
{
fetch
(
path
);
}