1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:17:35 +00:00

LibWeb: Implement document ready state

This commit is contained in:
Luke 2020-08-31 13:56:16 +01:00 committed by Andreas Kling
parent 8aabec1c94
commit 124c52b3b5
5 changed files with 49 additions and 0 deletions

View file

@ -17,4 +17,6 @@ interface Document : Node {
attribute HTMLElement? body;
readonly attribute HTMLHeadElement? head;
readonly attribute DOMString readyState;
}