| Index: third_party/WebKit/LayoutTests/fast/canvas/color-space/display_linear-rgb-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/canvas/color-space/display_linear-rgb-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/color-space/display_linear-rgb-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..433242b4748ed1d7192a285229ce3f9c55804c66
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/canvas/color-space/display_linear-rgb-expected.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE HTML>
|
| +<html>
|
| +<head>
|
| +<script>
|
| +function main()
|
| +{
|
| + var ctx = document.getElementById("c").getContext("2d");
|
| + ctx.fillStyle = 'red';
|
| + ctx.fillRect(20,20,50,50);
|
| + ctx.fillStyle = 'green';
|
| + ctx.fillRect(70,20,50,50);
|
| + ctx.fillStyle = 'blue';
|
| + ctx.fillRect(20,70,50,50);
|
| + ctx.fillStyle = 'black';
|
| + ctx.fillRect(70,70,50,50);
|
| +}
|
| +</script>
|
| +</head>
|
| +<body onload="main()">
|
| +<canvas id="c" width="140" height="140" class="nomargin"></canvas>
|
| +</body>
|
| +</html>
|
|
|