Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/replaced-elements/embedded-content-rendering-rules/canvas-fallback.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset=utf-8>
<title>Canvas fallback content</title>
<link rel=match href=canvas-fallback-ref.html>
<style>
canvas {
height: 2em; /* avoid causing scrollbar for 600x600 viewport */
}
#canvas2 {
display: inline;
}
#canvas3 {
display: block;
}
#canvas4 {
display: table;
}
</style>
<p>The word "FAIL" should not be visible below this line.
<p><canvas id=canvas1>FAIL</canvas>
<p><canvas id=canvas2>FAIL</canvas>
<p><canvas id=canvas3>FAIL</canvas>
<p><canvas id=canvas4>FAIL</canvas>