aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/webidls/HTMLButtonElement.webidl
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2014-02-25 12:41:11 +0100
committerMs2ger <ms2ger@gmail.com>2014-02-25 12:41:11 +0100
commit546a506149abc0b78c84cc9e6ea5b87c1fb3f17e (patch)
tree1309a97528ad10dea9ea74a942c3f520414d3722 /src/components/script/dom/webidls/HTMLButtonElement.webidl
parentda16e54243e256dee927f720ce6b9903b62ec14e (diff)
downloadservo-546a506149abc0b78c84cc9e6ea5b87c1fb3f17e.tar.gz
servo-546a506149abc0b78c84cc9e6ea5b87c1fb3f17e.zip
Remove Gecko-specific and other commented-out code in IDL.
Diffstat (limited to 'src/components/script/dom/webidls/HTMLButtonElement.webidl')
-rw-r--r--src/components/script/dom/webidls/HTMLButtonElement.webidl8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/components/script/dom/webidls/HTMLButtonElement.webidl b/src/components/script/dom/webidls/HTMLButtonElement.webidl
index 0ca51a1e618..2b7e18d6312 100644
--- a/src/components/script/dom/webidls/HTMLButtonElement.webidl
+++ b/src/components/script/dom/webidls/HTMLButtonElement.webidl
@@ -10,9 +10,6 @@
* and create derivative works of this document.
*/
-// FIXME: servo#707
-//interface HTMLFormElement;
-
// http://www.whatwg.org/specs/web-apps/current-work/#the-button-element
interface HTMLButtonElement : HTMLElement {
[SetterThrows, Pure]
@@ -37,15 +34,10 @@ interface HTMLButtonElement : HTMLElement {
attribute DOMString type;
[SetterThrows, Pure]
attribute DOMString value;
-// Not yet implemented:
-// attribute HTMLMenuElement? menu;
readonly attribute boolean willValidate;
readonly attribute ValidityState validity;
readonly attribute DOMString validationMessage;
boolean checkValidity();
void setCustomValidity(DOMString error);
-
-// Not yet implemented:
-// readonly attribute NodeList labels;
};