diff options
author | Luke <luke.wilde@live.co.uk> | 2020-07-27 05:04:26 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-27 19:51:45 +0200 |
commit | a2b40de0cc902a71666b1b1034f103e6a8b69c7d (patch) | |
tree | a4463252693917e3a67ab22e269c1e686a2241c0 /Libraries/LibWeb/HTML/HTMLBRElement.idl | |
parent | db1b67e88a1ff9758b3a1cb58e99b35330e4b038 (diff) | |
download | serenity-a2b40de0cc902a71666b1b1034f103e6a8b69c7d.zip |
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.
Diffstat (limited to 'Libraries/LibWeb/HTML/HTMLBRElement.idl')
-rw-r--r-- | Libraries/LibWeb/HTML/HTMLBRElement.idl | 5 |
1 files changed, 5 insertions, 0 deletions
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 { + + + +} |