mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:07:34 +00:00
parent
ed97ee902b
commit
2f426765a6
3 changed files with 33 additions and 0 deletions
|
@ -32,6 +32,12 @@ public:
|
|||
|
||||
virtual void inserted() override;
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/scripting.html#dom-script-supports
|
||||
static bool supports(String const& type)
|
||||
{
|
||||
return type.is_one_of("classic", "module");
|
||||
}
|
||||
|
||||
private:
|
||||
void prepare_script();
|
||||
void script_became_ready();
|
||||
|
|
|
@ -6,6 +6,8 @@ interface HTMLScriptElement : HTMLElement {
|
|||
[Reflect] attribute boolean defer;
|
||||
[Reflect] attribute DOMString integrity;
|
||||
|
||||
static boolean supports(DOMString type);
|
||||
|
||||
[Reflect] attribute DOMString charset;
|
||||
[Reflect] attribute DOMString event;
|
||||
[Reflect=for] attribute DOMString htmlFor;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue