diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-paint-api/two-element-custom-property-animation-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-paint-api/two-element-custom-property-animation-ref.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-paint-api/two-element-custom-property-animation-ref.html b/testing/web-platform/tests/css/css-paint-api/two-element-custom-property-animation-ref.html new file mode 100644 index 0000000000..37774e086f --- /dev/null +++ b/testing/web-platform/tests/css/css-paint-api/two-element-custom-property-animation-ref.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> +<body> +<canvas id ="canvas" width="200" height="400"></canvas> +<script> +var canvas = document.getElementById('canvas'); +var context = canvas.getContext("2d"); +context.fillStyle = 'green'; +context.fillRect(0, 0, 100, 100); +context.fillStyle = 'rgb(100, 100, 0)'; +context.fillRect(0, 200, 200, 200); +</script> +</body> +</html> |