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

Unified Diff: sdk/lib/html/templates/html/impl/impl_HTMLDocument.darttemplate

Issue 11470009: Removing more APIs from Document. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing tests. Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/html/scripts/htmlrenamer.py ('k') | sdk/lib/html/templates/html/impl/impl_Range.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/templates/html/impl/impl_HTMLDocument.darttemplate
diff --git a/sdk/lib/html/templates/html/impl/impl_HTMLDocument.darttemplate b/sdk/lib/html/templates/html/impl/impl_HTMLDocument.darttemplate
index 918f83accdcc1a23aef1027e3c6b5c211f9e7559..e95cc72415f571e491fdd1bc7cdcce88a10333b2 100644
--- a/sdk/lib/html/templates/html/impl/impl_HTMLDocument.darttemplate
+++ b/sdk/lib/html/templates/html/impl/impl_HTMLDocument.darttemplate
@@ -27,15 +27,30 @@ $!MEMBERS
return document.$dom_elementFromPoint(x, y);
}
+ /** @domName Document.getCSSCanvasContext */
+ CanvasRenderingContext getCssCanvasContext(String contextId, String name,
+ int width, int height) {
+ return document.$dom_getCssCanvasContext(contextId, name, width, height);
+ }
+
/** @domName Document.head */
HeadElement get head => document.$dom_head;
/** @domName Document.lastModified */
String get lastModified => document.$dom_lastModified;
+ /** @domName Document.preferredStylesheetSet */
+ String get preferredStylesheetSet => document.$dom_preferredStylesheetSet;
+
/** @domName Document.referrer */
String get referrer => document.$dom_referrer;
+ /** @domName Document.selectedStylesheetSet */
+ String get selectedStylesheetSet => document.$dom_selectedStylesheetSet;
+ void set selectedStylesheetSet(String value) {
+ document.$dom_selectedStylesheetSet = value;
+ }
+
/** @domName Document.styleSheets */
List<StyleSheet> get styleSheets => document.$dom_styleSheets;
« no previous file with comments | « sdk/lib/html/scripts/htmlrenamer.py ('k') | sdk/lib/html/templates/html/impl/impl_Range.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698