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

Unified Diff: client/dom/frog/dom_frog.dart

Issue 9695015: Provide DartDomNameOfAttribute (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix native Created 8 years, 9 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
Index: client/dom/frog/dom_frog.dart
diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart
index 9920fb29e66bf2ee9591094d54af5811c7469cb7..eb16819124124107f122a32f0aa410bcaaf62a39 100644
--- a/client/dom/frog/dom_frog.dart
+++ b/client/dom/frog/dom_frog.dart
@@ -3939,6 +3939,9 @@ class _HTMLTrackElementJs extends _HTMLElementJs implements HTMLTrackElement nat
static final int NONE = 0;
+ bool get defaultValue() native "return this.default;";
+ void set defaultValue(bool value) native "this.default = value;";
+
String kind;
String label;
@@ -16362,6 +16365,8 @@ interface HTMLTrackElement extends HTMLElement {
static final int NONE = 0;
+ bool defaultValue;
+
String kind;
String label;

Powered by Google App Engine
This is Rietveld 408576698