From a2b40de0cc902a71666b1b1034f103e6a8b69c7d Mon Sep 17 00:00:00 2001 From: Luke Date: Mon, 27 Jul 2020 05:04:26 +0100 Subject: LibWeb: Add a whole bunch of HTML DOM bindings Note that these aren't full implementations of the bindings. This mostly implements the low hanging fruit (namely, basic reflections) There are some attributes that should be USVString instead of DOMString. However, USVString is a slightly different definition of DOMString, so it should suffice for now. --- Libraries/LibWeb/HTML/HTMLBRElement.idl | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Libraries/LibWeb/HTML/HTMLBRElement.idl (limited to 'Libraries/LibWeb/HTML/HTMLBRElement.idl') diff --git a/Libraries/LibWeb/HTML/HTMLBRElement.idl b/Libraries/LibWeb/HTML/HTMLBRElement.idl new file mode 100644 index 0000000000..e8c475d909 --- /dev/null +++ b/Libraries/LibWeb/HTML/HTMLBRElement.idl @@ -0,0 +1,5 @@ +interface HTMLBRElement : HTMLElement { + + + +} -- cgit v1.2.3