diff options
author | Philipp Hartwig <ph@phhart.de> | 2015-09-27 19:08:53 +0200 |
---|---|---|
committer | Philipp Hartwig <ph@phhart.de> | 2015-09-27 19:08:53 +0200 |
commit | 8d67914c7f33364435171c400698db998875595f (patch) | |
tree | c46d65cd9fab98a3e5c132f22588c14ef9aae428 /components/script/dom/webidls/HTMLObjectElement.webidl | |
parent | a1fb8cfbb0be8d0a73bc1e3b63eb704f48098b8f (diff) | |
download | servo-8d67914c7f33364435171c400698db998875595f.tar.gz servo-8d67914c7f33364435171c400698db998875595f.zip |
Add form getters for additional elements; update test expectations
This adds form getters for fieldset, label, object, output, select and
textarea elements.
Diffstat (limited to 'components/script/dom/webidls/HTMLObjectElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLObjectElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLObjectElement.webidl b/components/script/dom/webidls/HTMLObjectElement.webidl index 13f4a5ee285..2b4e24e61f3 100644 --- a/components/script/dom/webidls/HTMLObjectElement.webidl +++ b/components/script/dom/webidls/HTMLObjectElement.webidl @@ -10,7 +10,7 @@ interface HTMLObjectElement : HTMLElement { // attribute boolean typeMustMatch; // attribute DOMString name; // attribute DOMString useMap; - //readonly attribute HTMLFormElement? form; + readonly attribute HTMLFormElement? form; // attribute DOMString width; // attribute DOMString height; //readonly attribute Document? contentDocument; |