blob: 702f8124848f5ad3b68683b18af4f71a68f610af [file] [log] [blame]
<!DOCTYPE html>
<title>Canvas test: 2d.pattern.image.broken</title>
<script src="../tests.js"></script>
<link rel="stylesheet" href="../tests.css">
<body>
<p id="passtext">Pass</p>
<p id="failtext">Fail</p>
<p class="output">These images should be identical:</p>
<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
<ul id="d"></ul>
<script>
_addTest(function(canvas, ctx) {
var img = document.getElementById('broken.png');
_assertSame(img.complete, false, "img.complete", "false");
_assertSame(ctx.createPattern(img, 'repeat'), null, "ctx.createPattern(img, 'repeat')", "null");
});
</script>
<img src="../images/broken.png" id="broken.png" class="resource">