| Index: Source/web/tests/data/canvas-copy-image.html
|
| diff --git a/Source/web/tests/data/canvas-copy-image.html b/Source/web/tests/data/canvas-copy-image.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b7638553796cd9a6532402940e7b785c12773d62
|
| --- /dev/null
|
| +++ b/Source/web/tests/data/canvas-copy-image.html
|
| @@ -0,0 +1,12 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<body>
|
| +<canvas width="200" height="200"></canvas>
|
| +<script>
|
| +var canvas = document.querySelector("canvas");
|
| +var context = canvas.getContext("2d");
|
| +context.fillStyle = "red";
|
| +context.fillRect(0, 0, 200, 200);
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|