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

Unified Diff: lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 11314016: restore dirName. It was added in html5 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index c9d103afd8d4018f1c93f6ab3835811891083121..c98203ed8751018e7c9a21d0aebcabd4e0849673 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -18571,6 +18571,9 @@ abstract class InputElement implements Element {
/** @domName HTMLInputElement.defaultValue */
String defaultValue;
+ /** @domName HTMLInputElement.dirName */
+ String dirName;
+
/** @domName HTMLInputElement.disabled */
bool disabled;
@@ -18760,6 +18763,10 @@ class _InputElementImpl extends _ElementImpl_Merged implements InputElement {
void set defaultValue(String value) native "HTMLInputElement_defaultValue_Setter";
+ String get dirName native "HTMLInputElement_dirName_Getter";
+
+ void set dirName(String value) native "HTMLInputElement_dirName_Setter";
+
bool get disabled native "HTMLInputElement_disabled_Getter";
void set disabled(bool value) native "HTMLInputElement_disabled_Setter";
@@ -37138,6 +37145,9 @@ abstract class TextAreaElement implements Element {
/** @domName HTMLTextAreaElement.defaultValue */
String defaultValue;
+ /** @domName HTMLTextAreaElement.dirName */
+ String dirName;
+
/** @domName HTMLTextAreaElement.disabled */
bool disabled;
@@ -37227,6 +37237,10 @@ class _TextAreaElementImpl extends _ElementImpl_Merged implements TextAreaElemen
void set defaultValue(String value) native "HTMLTextAreaElement_defaultValue_Setter";
+ String get dirName native "HTMLTextAreaElement_dirName_Getter";
+
+ void set dirName(String value) native "HTMLTextAreaElement_dirName_Setter";
+
bool get disabled native "HTMLTextAreaElement_disabled_Getter";
void set disabled(bool value) native "HTMLTextAreaElement_disabled_Setter";
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698