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