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

Unified Diff: lib/html/dart2js/html_dart2js.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 | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dart2js/html_dart2js.dart
diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
index 738c5d44043d25ef146d989e20cdae9f82dfbf23..c449c513630c2ab68754861be63d944ef22bc8d6 100644
--- a/lib/html/dart2js/html_dart2js.dart
+++ b/lib/html/dart2js/html_dart2js.dart
@@ -16761,6 +16761,9 @@ abstract class InputElement implements Element {
/** @domName HTMLInputElement.defaultValue */
String defaultValue;
+ /** @domName HTMLInputElement.dirName */
+ String dirName;
+
/** @domName HTMLInputElement.disabled */
bool disabled;
@@ -16929,6 +16932,8 @@ class _InputElementImpl extends _ElementImpl implements InputElement native "*HT
String defaultValue;
+ String dirName;
+
bool disabled;
_FileListImpl files;
@@ -33395,6 +33400,9 @@ abstract class TextAreaElement implements Element {
/** @domName HTMLTextAreaElement.defaultValue */
String defaultValue;
+ /** @domName HTMLTextAreaElement.dirName */
+ String dirName;
+
/** @domName HTMLTextAreaElement.disabled */
bool disabled;
@@ -33473,6 +33481,8 @@ class _TextAreaElementImpl extends _ElementImpl implements TextAreaElement nativ
String defaultValue;
+ String dirName;
+
bool disabled;
final _FormElementImpl form;
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698