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

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

Issue 16409016: Fixing up element_types_test to work properly in checked mode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tests/html/element_types_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 6b79dcc321eb84c1f4584be2b92c5c24ac0eaeb5..d30c64df4cf8502e719579cb057125541005fc34 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -16396,6 +16396,10 @@ class MessagePort extends EventTarget {
class MetaElement extends _Element_Merged {
MetaElement.internal() : super.internal();
+ @DomName('HTMLMetaElement.HTMLMetaElement')
+ @DocsEditable
+ factory MetaElement() => document.$dom_createElement("meta");
+
@DomName('HTMLMetaElement.content')
@DocsEditable
String get content native "HTMLMetaElement_content_Getter";
@@ -19610,6 +19614,10 @@ class ProgressEvent extends Event {
class QuoteElement extends _Element_Merged {
QuoteElement.internal() : super.internal();
+ @DomName('HTMLQuoteElement.HTMLQuoteElement')
+ @DocsEditable
+ factory QuoteElement() => document.$dom_createElement("q");
+
@DomName('HTMLQuoteElement.cite')
@DocsEditable
String get cite native "HTMLQuoteElement_cite_Getter";
@@ -21042,6 +21050,10 @@ class Selection extends NativeFieldWrapperClass1 {
class ShadowElement extends _Element_Merged {
ShadowElement.internal() : super.internal();
+ @DomName('HTMLShadowElement.HTMLShadowElement')
+ @DocsEditable
+ factory ShadowElement() => document.$dom_createElement("shadow");
+
/// Checks if this type is supported on the current platform.
static bool get supported => true;
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tests/html/element_types_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698