-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathresize-013.html
More file actions
24 lines (22 loc) · 941 Bytes
/
resize-013.html
File metadata and controls
24 lines (22 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test: resizing canvas</title>
<link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net">
<link rel="help" href="https://drafts.csswg.org/css-ui-3/#resize">
<meta name="flags" content="interact may">
<meta name="assert" content="UAs may apply the resize property to <canvas> regardless of the value of the overflow property.">
<style>
canvas { resize: both; }
</style>
<p>Test passes if both <strong>width</strong> and <strong>height</strong> of the orange box below can be adjusted (for instance by dragging the bottom-right corner).</p>
<canvas id="test" width="100" height="100">
<canvas> is not supported. This test is non conclusive.
</canvas>
<script>
var canvas = document.getElementById('test');
if (canvas.getContext) {
var ctx = canvas.getContext('2d');
ctx.fillStyle = '#FFA500';
ctx.fillRect (0, 0, 100, 100);
}
</script>