Index: core/html/HTMLProgressElement.idl |
diff --git a/core/html/HTMLProgressElement.idl b/core/html/HTMLProgressElement.idl |
index b2f5a9cdbba693fa07c80ec42a6b49daf00218f0..a3da90a39e765ef30544fa57a87d4d064ae88304 100644 |
--- a/core/html/HTMLProgressElement.idl |
+++ b/core/html/HTMLProgressElement.idl |
@@ -17,10 +17,13 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
-interface HTMLProgressElement : HTMLElement { |
- [RaisesException=Setter] attribute double value; |
- [RaisesException=Setter] attribute double max; |
- readonly attribute double position; |
- readonly attribute NodeList labels; |
-}; |
+// http://www.whatwg.org/specs/web-apps/current-work/multipage/the-button-element.html#htmlprogresselement |
+[ |
+ TypeChecking=Unrestricted, |
+] interface HTMLProgressElement : HTMLElement { |
+ attribute double value; |
+ attribute double max; |
+ readonly attribute double position; |
+ readonly attribute NodeList labels; |
+}; |