Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2257)

Unified Diff: core/html/HTMLMeterElement.idl

Issue 540533002: Roll IDL to Dartium37 (r181268) (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/html/HTMLMediaElement.idl ('k') | core/html/HTMLModElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLMeterElement.idl
diff --git a/core/html/HTMLMeterElement.idl b/core/html/HTMLMeterElement.idl
index fde8591538ee6b9bbf099a4589aeaa8c76fc963f..144f83ec411c41984a21238114b337cc9af96a3e 100644
--- a/core/html/HTMLMeterElement.idl
+++ b/core/html/HTMLMeterElement.idl
@@ -17,12 +17,16 @@
* Boston, MA 02110-1301, USA.
*/
-interface HTMLMeterElement : HTMLElement {
- [RaisesException=Setter] attribute double value;
- [RaisesException=Setter] attribute double min;
- [RaisesException=Setter] attribute double max;
- [RaisesException=Setter] attribute double low;
- [RaisesException=Setter] attribute double high;
- [RaisesException=Setter] attribute double optimum;
+// http://www.whatwg.org/specs/web-apps/current-work/multipage/the-button-element.html#htmlmeterelement
+
+[
+ TypeChecking=Unrestricted,
+] interface HTMLMeterElement : HTMLElement {
+ attribute double value;
+ attribute double min;
+ attribute double max;
+ attribute double low;
+ attribute double high;
+ attribute double optimum;
readonly attribute NodeList labels;
};
« no previous file with comments | « core/html/HTMLMediaElement.idl ('k') | core/html/HTMLModElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698