summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/test-bug-595934-canvas-css.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/webconsole/test/test-bug-595934-canvas-css.js')
-rw-r--r--devtools/client/webconsole/test/test-bug-595934-canvas-css.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/devtools/client/webconsole/test/test-bug-595934-canvas-css.js b/devtools/client/webconsole/test/test-bug-595934-canvas-css.js
new file mode 100644
index 000000000..ee1ebd425
--- /dev/null
+++ b/devtools/client/webconsole/test/test-bug-595934-canvas-css.js
@@ -0,0 +1,10 @@
+/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+window.addEventListener("DOMContentLoaded", function () {
+ var canvas = document.querySelector("canvas");
+ var context = canvas.getContext("2d");
+ context.strokeStyle = "foobarCanvasCssParser";
+}, false);