summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/633344-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/633344-1.html')
-rw-r--r--layout/reftests/bugs/633344-1.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/layout/reftests/bugs/633344-1.html b/layout/reftests/bugs/633344-1.html
new file mode 100644
index 0000000000..2713a6db4d
--- /dev/null
+++ b/layout/reftests/bugs/633344-1.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+.outer {
+ background:yellow;
+ position:absolute;
+ left:100px;
+ top:100px;
+ width:300px;
+ height:100px;
+ transform:scale(1.4);
+ transform-origin:top left;
+ transform:scale(1.4);
+ transform-origin:top left;
+}
+.inner {
+ float:left;
+ width:100px;
+ height:11px;
+ background:black;
+}
+canvas {
+ display:block;
+ float:left;
+}
+</style>
+</head>
+<body>
+<div class="outer"><div class="inner"></div><canvas id="c" width="10" height="10"></canvas></div>
+<script>
+var ctx = document.getElementById("c").getContext("2d");
+ctx.fillStyle = "black";
+ctx.fillRect(0, 0, 10, 10);
+</script>
+</body>
+</html>