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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 10964027: Enable document.implementation as it is useful when implementing a web components polyfill among ot… (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 | « lib/html/dart2js/html_dart2js.dart ('k') | no next file » | 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 f4a7f67c2d23e0a184a3247d30d6bd6bb13bb0c0..a8498f864789317a99af1ba5b268f82ce5d5997c 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -6178,6 +6178,8 @@ class _DocumentImpl extends _NodeImpl implements Document
HeadElement get head() native "Document_head_Getter";
+ DOMImplementation get implementation() native "Document_implementation_Getter";
+
String get lastModified() native "Document_lastModified_Getter";
String get preferredStylesheetSet() native "Document_preferredStylesheetSet_Getter";
@@ -26104,6 +26106,9 @@ interface Document extends HtmlElement {
/** @domName Document.head */
final HeadElement head;
+ /** @domName Document.implementation */
+ final DOMImplementation implementation;
+
/** @domName Document.lastModified */
final String lastModified;
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698