blob: 25ad148f2e71ff739d126a6f1d65c045af4b0e58 [file] [log] [blame]
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<body>
<script>
test(function(t) {
var canvas = document.createElement('canvas');
canvas.width = Math.pow(2, 14);
canvas.height = Math.pow(2, 14);
var ctx = canvas.getContext('2d');
ctx.fillRect(0, 0, canvas.width, canvas.height);
assert_true(true);
}, "Crash test for crbug.com/764837 and crbug.com/765925");
</script>
</body>