Open Lubrsi opened 3 days ago
We should replace all direct uses of ResourceLoader with Fetch. This is because using ResourceLoader bypasses many features that Fetch handles:
These are the usages I could find:
With these replaced, we could remove load_resource and potentially badge load and load_unbuffered to only be called from Fetch.
load_resource
load
load_unbuffered
This one https://wpt.fyi/results/infrastructure/assumptions/blank.html Might be failing quite a few tests for us. Does HTMLLinkElement using fetch cover <link rel=match href="about:blank">?
<link rel=match href="about:blank">
We should replace all direct uses of ResourceLoader with Fetch. This is because using ResourceLoader bypasses many features that Fetch handles:
These are the usages I could find:
With these replaced, we could remove
load_resource
and potentially badgeload
andload_unbuffered
to only be called from Fetch.