Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / canvas / access-zero-sized-canvas.html
blob3796142dc60b8122fb629ec208ac732d970e34b1
1 This test ensures that accessing the context of a zero sized canvas does not crash.
2 <canvas id="canvas" width="0" height="0"></canvas><br />
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 var context = document.getElementById("canvas").getContext("2d");
8 context.fillStyle = "green";
10 </script>