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

Unified Diff: lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 10977017: Adding constructor to ContentElement. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Incorporating review feedback. Created 8 years, 2 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:
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 0c16dbe5c76aa4d537dd3706c8430f3f10dfd8e9..0c1cef10783a8666d404050528e9893095dbc763 100644
--- a/lib/html/dart2js/html_dart2js.dart
+++ b/lib/html/dart2js/html_dart2js.dart
@@ -8401,6 +8401,8 @@ class _ConsoleImpl
/// @domName HTMLContentElement
abstract class ContentElement implements Element {
+ factory ContentElement() => _Elements.createContentElement();
+
/** @domName HTMLContentElement.select */
String select;
}
@@ -39255,6 +39257,11 @@ class _Elements {
return _e;
}
+ static ContentElement createContentElement() {
+ _ContentElementImpl _e = _document.$dom_createElement("content");
+ return _e;
+ }
+
static DListElement createDListElement() {
_DListElementImpl _e = _document.$dom_createElement("dl");
return _e;
« 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