Move canvas rendering test to WPT.

This commit is contained in:
Josh Matthews 2016-04-28 11:26:06 -04:00
parent 224bcd7057
commit be72363a32
4 changed files with 30 additions and 26 deletions

View file

@ -0,0 +1,15 @@
<!doctype html>
<meta charset="utf-8">
<link rel="match" href="canvas_without_context_ref.html">
<style>
div {
background-color: green;
width: 20px;
height: 20px;
}
</style>
</head>
<body>
<div><canvas width="20" height="20"></canvas></div>
</body>
</html>

View file

@ -0,0 +1,14 @@
<html>
<head>
<style>
div {
background-color: green;
width: 20px;
height: 20px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>