summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/691571-1-ref.html
blob: 6952890846512257c83b8b23ff428e9329ed86da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<body>
<canvas id="A" width=200 height=50></canvas><br />
<canvas id="B" width=200 height=50></canvas>
<script>
  var canvasA = document.getElementById("A"),
    ctxA = canvasA.getContext('2d'),
    canvasB = document.getElementById("B"),
    ctxB = canvasB.getContext('2d'),
    width = canvasA.width,
    height = canvasA.height;

  ctxB.fillStyle = 'red';
  ctxB.fillRect(0, 0, width, height);
</script>
</body>
</html>