blob: 14c7461451ec3c085935cb84920adab4b0c8629a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<canvas id="can" width=200 height=256 style="transform: translateZ(0)"></canvas>
Test passes if DRT doesn't crash.
<script>
var can = document.querySelector("#can");
var ctx = can.getContext("2d");
ctx.fillStyle = "green";
ctx.fillRect(0, 0, 300, 300);
document.body.offsetTop;
can.width = 300;
if (window.testRunner)
testRunner.dumpAsText();
</script>
|