blob: 6fb53257df2d5f44221a89b5c84185f7360ec9af [file] [log] [blame]
<!doctype html>
<html>
<body>
This test passes by not crashing !
<script>
if (window.testRunner) {
testRunner.dumpAsText();
}
window.onload = function () {
var canvas = document.createElement('canvas');
canvas.width = 0;
canvas.height = 0;
var context = canvas.getContext('2d');
if(context.imageSmoothingEnabled) {context.imageSmoothingEnabled = false;}
};
</script>
</body>
</html>