https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 11690672f466c806815a6998493660c5c9d69e1e authored by Timothy Gu on 05 September 2017, 06:26:22 UTC
Add symbol [[Set]]
Tip revision: 1169067
geometry-background-image-002-ref.html
<!DOCTYPE html>
<html>
<style>
html, body { margin: 0; padding: 0; }
</style>
<body>
<canvas id ="canvas" width="200" height="200"></canvas>
<script>
var canvas = document.getElementById('canvas');
var context = canvas.getContext("2d");
context.strokeStyle = 'green';
context.lineWidth = 4;
context.strokeRect(0, 0, 200, 200);
</script>
</body>
</html>
back to top