| Index: LayoutTests/fast/canvas/bug532148-expected.html
|
| diff --git a/LayoutTests/fast/canvas/bug532148-expected.html b/LayoutTests/fast/canvas/bug532148-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0ebe79d6956d46ad0d0de10863506650d09e5891
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/canvas/bug532148-expected.html
|
| @@ -0,0 +1,16 @@
|
| +<!doctype html>
|
| +<canvas id='c'></canvas>
|
| +
|
| +<script>
|
| +const canvas = document.getElementById('c'),
|
| +ctx = c.getContext('2d', {alpha: false});
|
| +
|
| +canvas.width = 128;
|
| +canvas.height = 128;
|
| +
|
| +ctx.fillStyle = 'green';
|
| +ctx.fillRect( 0, 0, 128, 128 );
|
| +ctx.fillStyle = 'blue';
|
| +ctx.fillRect( 0, 0, 64, 64 );
|
| +ctx.fillRect( 64, 64, 64, 64 );
|
| +</script>
|
|
|