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

LibWeb: Add Document.{images,embeds,plugins,links,forms,scripts}

This commit is contained in:
Luke 2021-05-04 23:13:28 +01:00 committed by Linus Groh
parent 19731fc14c
commit 7f6baf8b17
3 changed files with 75 additions and 0 deletions

View file

@ -20,6 +20,12 @@ interface Document : Node {
readonly attribute HTMLCollection applets;
readonly attribute HTMLCollection anchors;
readonly attribute HTMLCollection images;
readonly attribute HTMLCollection embeds;
readonly attribute HTMLCollection plugins;
readonly attribute HTMLCollection links;
readonly attribute HTMLCollection forms;
readonly attribute HTMLCollection scripts;
Element createElement(DOMString tagName);
Element createElementNS(DOMString? namespace, DOMString qualifiedName);