blob: 07232588f39797b2bbd9b64c36e9f8c7f4cff3ab [file] [log] [blame]
<!DOCTYPE html>
<title>Canvas test: type.delete</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>.delete</h1>
<p class="desc">window.HTMLCanvasElement interface object is [[Configurable]]</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) {
_assertSame(delete window.HTMLCanvasElement, true, "delete window.HTMLCanvasElement", "true");
_assertSame(window.HTMLCanvasElement, undefined, "window.HTMLCanvasElement", "undefined");
});
</script>