summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/reftest/mozCurrentTransform.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/canvas/test/reftest/mozCurrentTransform.html')
-rw-r--r--dom/canvas/test/reftest/mozCurrentTransform.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/dom/canvas/test/reftest/mozCurrentTransform.html b/dom/canvas/test/reftest/mozCurrentTransform.html
new file mode 100644
index 000000000..0f10ec4bc
--- /dev/null
+++ b/dom/canvas/test/reftest/mozCurrentTransform.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<head>
+<canvas id="canvas" width="150" height="150"></canvas>
+
+<script>
+
+var canvas = document.getElementById('canvas');
+var ctx = canvas.getContext('2d');
+ctx.transform(1,0.5,-0.5,1,30,10);
+setTimeout(function() {
+ var canvas = document.getElementById('canvas');
+ var ctx = canvas.getContext('2d');
+ var transform = ctx.mozCurrentTransform;
+ ctx.mozCurrentTransform = transform;
+ ctx.fillStyle = '#f00';
+ ctx.fillRect(0, 0, 100, 100);
+ document.documentElement.removeAttribute("class");
+}, 10)
+
+</script>
+</body></html>