mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:38:12 +00:00
LibWeb: Remove FIXME in is_javascript_mime_type_essence_match
This was misleading. The spec just wants us to check a string matches a string in the JavaScript MIME type essence list. It doesn't want us to parse the string as a MIME type to then use its essence for the check. Renames "mime_type" to "string" to make this less misleading.
This commit is contained in:
parent
929c90f8c8
commit
4477a0d6fd
1 changed files with 3 additions and 5 deletions
|
@ -106,12 +106,10 @@ void HTMLScriptElement::execute_script()
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://mimesniff.spec.whatwg.org/#javascript-mime-type-essence-match
|
// https://mimesniff.spec.whatwg.org/#javascript-mime-type-essence-match
|
||||||
static bool is_javascript_mime_type_essence_match(const String& mime_type)
|
static bool is_javascript_mime_type_essence_match(const String& string)
|
||||||
{
|
{
|
||||||
// FIXME: This operates on the whole mime type, instead of just the essence. https://mimesniff.spec.whatwg.org/#mime-type-essence
|
auto lowercase_string = string.to_lowercase();
|
||||||
// It'd probably be best to make a helper class for mime types, since there is a whole spec about mime types.
|
return lowercase_string.is_one_of("application/ecmascript", "application/javascript", "application/x-ecmascript", "application/x-javascript", "text/ecmascript", "text/javascript", "text/javascript1.0", "text/javascript1.1", "text/javascript1.2", "text/javascript1.3", "text/javascript1.4", "text/javascript1.5", "text/jscript", "text/livescript", "text/x-ecmascript", "text/x-javascript");
|
||||||
auto lowercase_mime_type = mime_type.to_lowercase();
|
|
||||||
return lowercase_mime_type.is_one_of("application/ecmascript", "application/javascript", "application/x-ecmascript", "application/x-javascript", "text/ecmascript", "text/javascript", "text/javascript1.0", "text/javascript1.1", "text/javascript1.2", "text/javascript1.3", "text/javascript1.4", "text/javascript1.5", "text/jscript", "text/livescript", "text/x-ecmascript", "text/x-javascript");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/scripting.html#prepare-a-script
|
// https://html.spec.whatwg.org/multipage/scripting.html#prepare-a-script
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue