Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/canvas/element/canvas-host/2d.canvas.host.readonly.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<meta charset="UTF-8">
<title>Canvas test: 2d.canvas.host.readonly</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/html/canvas/resources/canvas-tests.js"></script>
<link rel="stylesheet" href="/html/canvas/resources/canvas-tests.css">
<body class="show_output">
<h1>2d.canvas.host.readonly</h1>
<p class="desc">Canvas objects are readonly</p>
<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>
var t = async_test("Canvas objects are readonly");
_addTest(function(canvas, ctx) {
var canvas2 = document.createElement('canvas');
var d = ctx.canvas;
_assertDifferent(canvas2, d, "canvas2", "d");
ctx.canvas = canvas2;
_assertSame(ctx.canvas, d, "ctx.canvas", "d");
});
</script>