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

LibWeb: Implement document.applets

This is a legacy interface that returns an always-empty HTMLCollection.
This commit is contained in:
Andreas Kling 2021-04-22 22:11:42 +02:00
parent e4df1b223f
commit 43d16fa5b6
3 changed files with 11 additions and 0 deletions

View file

@ -18,6 +18,8 @@ interface Document : Node {
HTMLCollection getElementsByTagName(DOMString tagName);
HTMLCollection getElementsByClassName(DOMString className);
readonly attribute HTMLCollection applets;
Element createElement(DOMString tagName);
Element createElementNS(DOMString? namespace, DOMString qualifiedName);
DocumentFragment createDocumentFragment();