LibWeb: Consider resource: URLs to be trustworthy and non-opaque

This makes icons once again load in the directory listings

(cherry picked from commit d14888f31a8378f319efa18028083ff605105101)
This commit is contained in:
circl
2024-06-10 12:33:52 +02:00
committed by Nico Weber
parent 18d589c520
commit 8287790913
2 changed files with 4 additions and 2 deletions

View File

@@ -548,7 +548,8 @@ HTML::Origin url_origin(URL::URL const& url)
}
// -> "file"
if (url.scheme() == "file"sv) {
// AD-HOC: Our resource:// is basically an alias to file://
if (url.scheme() == "file"sv || url.scheme() == "resource"sv) {
// Unfortunate as it is, this is left as an exercise to the reader. When in doubt, return a new opaque origin.
// Note: We must return an origin with the `file://' protocol for `file://' iframes to work from `file://' pages.
return HTML::Origin(url.scheme().to_byte_string(), String {}, 0);