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

Unified Diff: client/html/frog/html_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/html/frog/html_frog.dart
diff --git a/client/html/frog/html_frog.dart b/client/html/frog/html_frog.dart
index 71bb7e69a34ca9053df079263e56fddb28c4ecb6..36fc1dc6acfbc8fb78fc877c97953019d66ed8e0 100644
--- a/client/html/frog/html_frog.dart
+++ b/client/html/frog/html_frog.dart
@@ -13775,6 +13775,10 @@ class _TrackElementImpl extends _ElementImpl implements TrackElement native "*HT
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;
@@ -28023,6 +28027,8 @@ interface TrackElement extends Element {
static final int NONE = 0;
+ bool defaultValue;
+
String kind;
String label;
« client/dom/scripts/systemnative.py ('K') | « client/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698