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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 10967028: Adding constructor to ContentElement. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 c31e485b7ecc4188333da0fc783e55f15b660db2..3a49ffe226e9ada4161f557dc1999623ca71ee00 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;
}
@@ -39252,6 +39254,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