summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/HTML/HTMLInputElement.idl
diff options
context:
space:
mode:
authorLuke <luke.wilde@live.co.uk>2020-11-12 04:16:41 +0000
committerAndreas Kling <kling@serenityos.org>2020-11-12 10:38:26 +0100
commit3f73b0f896f57957f1bfedf5ee674f8fd8c9224f (patch)
tree27c1690774b9ad385cd4cc93f3a2a0ce3636c9f1 /Libraries/LibWeb/HTML/HTMLInputElement.idl
parent1643fa22237e418b896e45c7a8bec10f826dc177 (diff)
downloadserenity-3f73b0f896f57957f1bfedf5ee674f8fd8c9224f.zip
LibWeb: Add almost all obsolete but required IDL attributes
As according to https://html.spec.whatwg.org/multipage/obsolete.html Section 16.3 "Requirements for implementations" Not all of these attributes are included due to requiring a bit more functionality.
Diffstat (limited to 'Libraries/LibWeb/HTML/HTMLInputElement.idl')
-rw-r--r--Libraries/LibWeb/HTML/HTMLInputElement.idl3
1 files changed, 3 insertions, 0 deletions
diff --git a/Libraries/LibWeb/HTML/HTMLInputElement.idl b/Libraries/LibWeb/HTML/HTMLInputElement.idl
index b62010f7e7..ad693cc977 100644
--- a/Libraries/LibWeb/HTML/HTMLInputElement.idl
+++ b/Libraries/LibWeb/HTML/HTMLInputElement.idl
@@ -21,4 +21,7 @@ interface HTMLInputElement : HTMLElement {
[Reflect=readonly] attribute boolean readOnly;
[Reflect] attribute boolean required;
+ [Reflect] attribute DOMString align;
+ [Reflect=usemap] attribute DOMString useMap;
+
}