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

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

Issue 11846003: Adding supported checks for getCssCanvasContext. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index efe10ef2b15256d2be4fab6ac599ad46c005dfe8..2a525136f049e5697bf5105e4fd405cce3036139 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -10551,7 +10551,40 @@ class HtmlDocument extends Document native "*HTMLDocument" {
return document.$dom_elementFromPoint(x, y);
}
- /** @domName Document.getCSSCanvasContext */
+ /**
+ * Checks if the getCssCanvasContext API is supported on the current platform.
+ *
+ * See also:
+ *
+ * * [getCssCanvasContext]
+ */
+ static bool get supportsCssCanvasContext =>
+ JS('bool', '!!(document.getCSSCanvasContext)');
+
+
+ /**
+ * Gets a CanvasRenderingContext which can be used as the CSS background of an
+ * element.
+ *
+ * CSS:
+ *
+ * background: -webkit-canvas(backgroundCanvas)
+ *
+ * Generate the canvas:
+ *
+ * var context = document.getCssCanvasContext('2d', 'backgroundCanvas',
+ * 100, 100);
+ * context.fillStyle = 'red';
+ * context.fillRect(0, 0, 100, 100);
+ *
+ * See also:
+ *
+ * * [supportsCssCanvasContext]
+ * * [CanvasElement.getContext]
+ */
+ @SupportedBrowser(SupportedBrowser.CHROME)
+ @SupportedBrowser(SupportedBrowser.SAFARI)
+ @Experimental()
CanvasRenderingContext getCssCanvasContext(String contextId, String name,
int width, int height) {
return document.$dom_getCssCanvasContext(contextId, name, width, height);
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698