mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 13:19:05 +00:00
LibWeb: Run <object> fallback steps if data type is not supported
Progress on fixing regressed Acid2.
This commit is contained in:
parent
d5cddd4696
commit
768b1455d6
Notes:
sideshowbarker
2024-07-18 00:41:35 +09:00
Author: https://github.com/kalenikaliaksandr
Commit: 768b1455d6
Pull-request: https://github.com/SerenityOS/serenity/pull/23977
5 changed files with 42 additions and 10 deletions
|
@ -414,6 +414,30 @@ static WebIDL::ExceptionOr<JS::NonnullGCPtr<DOM::Document>> load_media_document(
|
|||
// be true for the Document.
|
||||
}
|
||||
|
||||
bool can_load_document_with_type(MimeSniff::MimeType const& type)
|
||||
{
|
||||
if (type.is_html())
|
||||
return true;
|
||||
if (type.is_xml())
|
||||
return true;
|
||||
if (type.is_javascript()
|
||||
|| type.is_json()
|
||||
|| type.essence() == "text/css"_string
|
||||
|| type.essence() == "text/plain"_string
|
||||
|| type.essence() == "text/vtt"_string) {
|
||||
return true;
|
||||
}
|
||||
if (type.essence() == "multipart/x-mixed-replace"_string)
|
||||
return true;
|
||||
if (type.is_image() || type.is_audio_or_video())
|
||||
return true;
|
||||
if (type.essence() == "application/pdf"_string || type.essence() == "text/pdf"_string)
|
||||
return true;
|
||||
if (type.essence() == "text/markdown"sv)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#loading-a-document
|
||||
JS::GCPtr<DOM::Document> load_document(HTML::NavigationParams const& navigation_params)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue