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