blob: 9cd0c51c97b2ccd852516e7da59e5ffc05d976cb [file] [log] [blame]
<!DOCTYPE html>
<title>Canvas test: type.replace</title>
<meta name="author" content="Philip Taylor">
<script src="../common/canvas-tests.js"></script>
<link rel="stylesheet" href="../common/canvas-tests.css">
<body class="show_output">
<h1><a href="index.type.html">type</a>.replace</h1>
<p class="desc">HTMLCanvasElement methods can be replaced, and the replacement methods used by canvases</p>
<div class="refs">Spec references:
<ul>
<li><a href="../annotated-spec/canvas.html#testrefs.canvas.type">canvas.type</a>
</ul>
</div>
<p class="notes">Defined in "Web IDL" (draft)
<p class="output">Actual output:</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) {
window.HTMLCanvasElement.prototype.getContext = function (name) { return 0; };
_assertSame(canvas.getContext('2d'), 0, "canvas.getContext('2d')", "0");
});
</script>