mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-08 17:47:18 +00:00
Also, make it return a HTMLElement since Document.body should actually return the frameset element in a frame-based document.
11 lines
272 B
Plaintext
11 lines
272 B
Plaintext
interface Document : Node {
|
|
|
|
Element? getElementById(DOMString id);
|
|
Element? querySelector(DOMString selectors);
|
|
ArrayFromVector querySelectorAll(DOMString selectors);
|
|
Element createElement(DOMString tagName);
|
|
|
|
readonly attribute HTMLElement? body;
|
|
|
|
}
|