Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / canvas / transformed-canvas-reset.html
blob14c7461451ec3c085935cb84920adab4b0c8629a
1 <!DOCTYPE html>
2 <canvas id="can" width=200 height=256 style="transform: translateZ(0)"></canvas>
3 Test passes if DRT doesn't crash.
4 <script>
5 var can = document.querySelector("#can");
6 var ctx = can.getContext("2d");
7 ctx.fillStyle = "green";
8 ctx.fillRect(0, 0, 300, 300);
9 document.body.offsetTop;
10 can.width = 300;
11 if (window.testRunner)
12 testRunner.dumpAsText();
13 </script>