diff options
author | shanehandley <1322294+shanehandley@users.noreply.github.com> | 2024-07-29 01:01:01 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-28 15:01:01 +0000 |
commit | ed8def28960fd64fa0d00bd67731d594c1042747 (patch) | |
tree | a05b4d5b3aabb814681aa5e1303dcdac744fe941 /components/script/dom/webidls/HTMLFieldSetElement.webidl | |
parent | bc75bf4cfa42d627309bd003dbb6dab3f3233dfd (diff) | |
download | servo-ed8def28960fd64fa0d00bd67731d594c1042747.tar.gz servo-ed8def28960fd64fa0d00bd67731d594c1042747.zip |
Add the type IDL attribute to htmlfieldsetelement (#32869)
* Add the type IDL attribute to htmlfieldsetelement
Signed-off-by: Shane Handley <shanehandley@fastmail.com>
* Fix missing idlharness test expectations
Signed-off-by: Shane Handley <shanehandley@fastmail.com>
---------
Signed-off-by: Shane Handley <shanehandley@fastmail.com>
Diffstat (limited to 'components/script/dom/webidls/HTMLFieldSetElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLFieldSetElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLFieldSetElement.webidl b/components/script/dom/webidls/HTMLFieldSetElement.webidl index 8774d75a537..494dae3a5a2 100644 --- a/components/script/dom/webidls/HTMLFieldSetElement.webidl +++ b/components/script/dom/webidls/HTMLFieldSetElement.webidl @@ -13,7 +13,7 @@ interface HTMLFieldSetElement : HTMLElement { [CEReactions] attribute DOMString name; - //readonly attribute DOMString type; + readonly attribute DOMString type; [SameObject] readonly attribute HTMLCollection elements; |