LibWeb: Flesh out prepare_script and execute_script

This fills in a bunch of the FIXMEs that was in prepare_script.

execute_script is almost finished, it's just missing the module side.

As an aside, let's not assert when inserting a script element with
innerHTML.
This commit is contained in:
Luke 2021-01-28 20:31:20 +00:00 committed by Andreas Kling
commit 3f5532d43e
Notes: sideshowbarker 2024-07-18 22:46:47 +09:00
8 changed files with 188 additions and 40 deletions

View file

@ -30,6 +30,7 @@ interface Document : Node {
readonly attribute Element? documentElement;
attribute HTMLElement? body;
readonly attribute HTMLHeadElement? head;
readonly attribute HTMLScriptElement? currentScript;
readonly attribute DOMString readyState;