diff options
author | Patrick Shaughnessy <pshaughn@comcast.net> | 2020-01-01 13:33:19 -0500 |
---|---|---|
committer | Patrick Shaughnessy <pshaughn@comcast.net> | 2020-01-06 15:28:55 -0500 |
commit | a322c6079b623fc9e4f710ec22b21712fb295767 (patch) | |
tree | a54441cd2bbc52b205d88916464f2d9d5a971388 /components/script/dom/webidls/HTMLOutputElement.webidl | |
parent | fd2950e903aab2c6d56d537a71a2a25ccd0307e5 (diff) | |
download | servo-a322c6079b623fc9e4f710ec22b21712fb295767.tar.gz servo-a322c6079b623fc9e4f710ec22b21712fb295767.zip |
Now passing output tests as well as anyone
Diffstat (limited to 'components/script/dom/webidls/HTMLOutputElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLOutputElement.webidl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/webidls/HTMLOutputElement.webidl b/components/script/dom/webidls/HTMLOutputElement.webidl index ac631ab7906..b956d593d8b 100644 --- a/components/script/dom/webidls/HTMLOutputElement.webidl +++ b/components/script/dom/webidls/HTMLOutputElement.webidl @@ -12,11 +12,11 @@ interface HTMLOutputElement : HTMLElement { // [CEReactions] // attribute DOMString name; - // readonly attribute DOMString type; - // [CEReactions] - // attribute DOMString defaultValue; - // [CEReactions] - // attribute DOMString value; + [Pure] readonly attribute DOMString type; + [CEReactions] + attribute DOMString defaultValue; + [CEReactions] + attribute DOMString value; // readonly attribute boolean willValidate; readonly attribute ValidityState validity; |