diff options
60 files changed, 238 insertions, 227 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-before-css-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-before-css-expected.html new file mode 100644 index 0000000..a5af47d --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-before-css-expected.html @@ -0,0 +1,9 @@ +<html> +<head> + <link rel="stylesheet" href="about:blank" type="text/css"> +</head> +<body> + <p>If the canvas below is black, then we managed to draw before loading stylesheets. Hooray!</p> + <div style="width:400px; height:200px; background-color:black;"></div> +</body> +</html> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-before-css-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-before-css-expected.txt deleted file mode 100644 index eb75fe1..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-before-css-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -If the canvas below is black, then we managed to draw before loading stylesheets. Hooray! - - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-before-css.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-before-css.html index 550ef15..51b562b 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-before-css.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-before-css.html @@ -6,9 +6,6 @@ <p>If the canvas below is black, then we managed to draw before loading stylesheets. Hooray!</p> <canvas id="mycanvas" width="400" height="200"></canvas> <script type="application/x-javascript"> - if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - var canvas = document.getElementById("mycanvas"); canvas.getContext("2d").fillRect(0, 0, canvas.width, canvas.height); </script> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg-expected.html new file mode 100644 index 0000000..6e793f2 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg-expected.html @@ -0,0 +1,24 @@ +<html> + <head> + <script type="application/x-javascript"> +function draw() { + var ctx = document.getElementById('c').getContext('2d'); + + ctx.fillStyle = "rgb(200,0,0)"; + ctx.fillRect (10, 10, 55, 50); + ctx.fillRect (310, 10, 55, 50); + ctx.fillRect (10, 310, 55, 50); + ctx.fillRect (310, 310, 55, 50); + + ctx.fillStyle = "rgba(0, 0, 200, 0.5)"; + ctx.fillRect (30, 30, 55, 50); + ctx.fillRect (330, 30, 55, 50); + ctx.fillRect (30, 330, 55, 50); + ctx.fillRect (330, 330, 55, 50); +} + </script> + </head> + <body onload="draw();"> + <canvas id="c" width="600" height="600"></div> + </body> +</html> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg-expected.txt deleted file mode 100644 index 2411c0a..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -layer at (0,0) size 785x620 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x620 - RenderBlock {HTML} at (0,0) size 785x620 - RenderBody {BODY} at (8,8) size 769x604 - RenderBlock {DIV} at (0,0) size 604x604 [border: (2px solid #000000)] diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg.html index 2022676..26a0da9 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg.html @@ -1,7 +1,7 @@ <html> <head> <style> - div { background: -webkit-canvas(squares); width:600px; height:600px; border:2px solid black } + div { background: -webkit-canvas(squares); width:600px; height:600px; } </style> <script type="application/x-javascript"> @@ -19,4 +19,4 @@ function draw(w, h) { <body onload="draw(300, 300)"> <div></div> </body> -</html>
\ No newline at end of file +</html> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-resize-reset-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-resize-reset-expected.html new file mode 100644 index 0000000..bcaac60 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-resize-reset-expected.html @@ -0,0 +1,9 @@ +<!DOCTYPE HTML> +<html> + <head> + <title>Resizing a canvas</title> + </head> + <body> + <p>There should be nothing below. Bug 8994. </p> + </body> +</html> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-resize-reset-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-resize-reset-expected.txt deleted file mode 100644 index 71765ad..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-resize-reset-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -There should be nothing below. Bug 8994. - - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-resize-reset.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-resize-reset.html index f29ad7e..310d31a 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-resize-reset.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-resize-reset.html @@ -7,9 +7,6 @@ <p>There should be nothing below. Bug 8994. </p> <p><canvas width="200" height="100">FAIL</canvas></p> <script> - if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - var canvas = document.getElementsByTagName('canvas')[0]; var context = canvas.getContext('2d'); diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-size-change-after-layout-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-size-change-after-layout-expected.html new file mode 100644 index 0000000..022e035 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-size-change-after-layout-expected.html @@ -0,0 +1,11 @@ +<style> + canvas { + border: solid green; + } +</style> +<p> + These should be two identical green hollow squares: +</p> +<canvas width="50" height="50"></canvas> +<canvas width="50" height="50"></canvas> + diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-size-change-after-layout-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-size-change-after-layout-expected.txt deleted file mode 100644 index 8adb60c..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-size-change-after-layout-expected.txt +++ /dev/null @@ -1,15 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x600 - RenderBlock {HTML} at (0,0) size 800x600 - RenderBody {BODY} at (8,8) size 784x584 - RenderBlock {P} at (0,0) size 784x18 - RenderText {#text} at (0,0) size 330x18 - text run at (0,0) width 330: "These should be two identical green hollow squares:" - RenderBlock (anonymous) at (0,34) size 784x60 - RenderHTMLCanvas {CANVAS} at (0,0) size 56x56 [border: (3px solid #008000)] - RenderText {#text} at (56,42) size 4x18 - text run at (56,42) width 4: " " - RenderHTMLCanvas {CANVAS} at (60,0) size 56x56 [border: (3px solid #008000)] - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-identity-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-identity-expected.html new file mode 100644 index 0000000..c21df93 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-identity-expected.html @@ -0,0 +1,3 @@ +<!DOCTYPE HTML> +<title>Canvas test: 2d.transformation.transform.identity</title> +<div style="width:100px; height:100px; background-color:#0f0;"></div> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-identity-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-identity-expected.txt deleted file mode 100644 index 8b13789..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-identity-expected.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-identity.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-identity.html index daef595..57f26d1 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-identity.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-identity.html @@ -5,9 +5,6 @@ <title>Canvas test: 2d.transformation.transform.identity</title> <canvas id="canvas" class="output" width="100" height="100"><p class="fallback">FAIL (fallback content)</p></canvas> <script> -if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - var canvas = document.getElementById("canvas").getContext("2d"); canvas.fillStyle = '#f00'; canvas.fillRect(0, 0, 100, 100); diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-infinity-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-infinity-expected.html new file mode 100644 index 0000000..c21df93 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-infinity-expected.html @@ -0,0 +1,3 @@ +<!DOCTYPE HTML> +<title>Canvas test: 2d.transformation.transform.identity</title> +<div style="width:100px; height:100px; background-color:#0f0;"></div> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-infinity-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-infinity-expected.txt deleted file mode 100644 index 8b13789..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-infinity-expected.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-infinity.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-infinity.html index 5e57727..c1d982e 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-infinity.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-infinity.html @@ -5,9 +5,6 @@ <title>Canvas test: 2d.transformation.transform.infinity</title> <canvas id="canvas" class="output" width="100" height="100"><p class="fallback">FAIL (fallback content)</p></canvas> <script> -if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - var ctx = document.getElementById("canvas").getContext("2d"); ctx.fillStyle = '#f00'; ctx.fillRect(0, 0, 100, 100); diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-multiply-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-multiply-expected.html new file mode 100644 index 0000000..c21df93 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-multiply-expected.html @@ -0,0 +1,3 @@ +<!DOCTYPE HTML> +<title>Canvas test: 2d.transformation.transform.identity</title> +<div style="width:100px; height:100px; background-color:#0f0;"></div> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-multiply-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-multiply-expected.txt deleted file mode 100644 index 8b13789..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-multiply-expected.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-multiply.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-multiply.html index 696c35a..f0d9fd4 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-multiply.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-multiply.html @@ -5,9 +5,6 @@ <title>Canvas test: 2d.transformation.transform.multiply</title> <canvas id="canvas" class="output" width="100" height="100"><p class="fallback">FAIL (fallback content)</p></canvas> <script> -if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - var ctx = document.getElementById("canvas").getContext("2d"); ctx.fillStyle = '#f00'; ctx.fillRect(0, 0, 100, 100); diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-nan-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-nan-expected.html new file mode 100644 index 0000000..c21df93 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-nan-expected.html @@ -0,0 +1,3 @@ +<!DOCTYPE HTML> +<title>Canvas test: 2d.transformation.transform.identity</title> +<div style="width:100px; height:100px; background-color:#0f0;"></div> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-nan-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-nan-expected.txt deleted file mode 100644 index 8b13789..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-nan-expected.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-nan.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-nan.html index 90fa88f..9c0cb4a 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-nan.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-nan.html @@ -5,9 +5,6 @@ <title>Canvas test: 2d.transformation.transform.nan</title> <canvas id="canvas" class="output" width="100" height="100"><p class="fallback">FAIL (fallback content)</p></canvas> <script> -if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - var ctx = document.getElementById("canvas").getContext("2d"); ctx.fillStyle = '#f00'; ctx.fillRect(0, 0, 100, 100); diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-non-invertible-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-non-invertible-expected.html new file mode 100644 index 0000000..c21df93 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-non-invertible-expected.html @@ -0,0 +1,3 @@ +<!DOCTYPE HTML> +<title>Canvas test: 2d.transformation.transform.identity</title> +<div style="width:100px; height:100px; background-color:#0f0;"></div> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-non-invertible-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-non-invertible-expected.txt deleted file mode 100644 index 8b13789..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-non-invertible-expected.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-non-invertible.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-non-invertible.html index 85135ad..3d9ee8b 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-non-invertible.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-non-invertible.html @@ -7,9 +7,6 @@ <title>Canvas test: 2d.transformation.transform.non-invertible</title> <canvas id="canvas" class="output" width="100" height="100"><p class="fallback">FAIL (fallback content)</p></canvas> <script> -if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - var ctx = document.getElementById("canvas").getContext("2d"); ctx.fillStyle = '#0f0'; ctx.fillRect(0, 0, 100, 100); diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-skewed-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-skewed-expected.html new file mode 100644 index 0000000..c21df93 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-skewed-expected.html @@ -0,0 +1,3 @@ +<!DOCTYPE HTML> +<title>Canvas test: 2d.transformation.transform.identity</title> +<div style="width:100px; height:100px; background-color:#0f0;"></div> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-skewed-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-skewed-expected.txt deleted file mode 100644 index 8b13789..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-skewed-expected.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-skewed.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-skewed.html index f3ff910..921061d 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-skewed.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-transform-skewed.html @@ -5,17 +5,16 @@ <title>Canvas test: 2d.transformation.transform.skewed</title> <canvas id="canvas" class="output" width="100" height="100"><p class="fallback">FAIL (fallback content)</p></canvas> <script> -if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - var ctx = document.getElementById("canvas").getContext("2d"); // Create green with a red square ring inside it ctx.fillStyle = '#0f0'; ctx.fillRect(0, 0, 100, 100); ctx.fillStyle = '#f00'; -ctx.fillRect(20, 10, 60, 30); +// rectangle (20, 10, 60, 30) inset by 1 pixel to allow margin for numerical error. +ctx.fillRect(21, 11, 58, 28); ctx.fillStyle = '#0f0'; -ctx.fillRect(40, 20, 20, 10); +// rectangle (40, 20, 20, 10) outset by one pixel to allow margin for numerical error. +ctx.fillRect(39, 19, 22, 12); // Draw a skewed shape to fill that gap, to make sure it is aligned correctly ctx.transform(1,4, 2,3, 5,6); diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-zoom-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-zoom-expected.html new file mode 100644 index 0000000..63409e1 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-zoom-expected.html @@ -0,0 +1,10 @@ +<style> + canvas { border: solid green; } +</style> +<p> + These should be four green hollow boxes with dimensions 600x300, 100x300, 600x100, 100x100. +</p> +<canvas width="600" height="300"></canvas> +<canvas width="100" height="300"></canvas> +<canvas width="600" height="100"></canvas> +<canvas width="100" height="100"></canvas> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-zoom-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-zoom-expected.txt deleted file mode 100644 index 288458d..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-zoom-expected.txt +++ /dev/null @@ -1,22 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x600 - RenderBlock {HTML} at (0,0) size 800x600 - RenderBody {BODY} at (8,8) size 784x584 - RenderBlock {P} at (0,0) size 784x18 - RenderText {#text} at (0,0) size 624x18 - text run at (0,0) width 624: "These should be four green hollow boxes with dimensions 600x300, 100x300, 600x100, 100x100." - RenderBlock (anonymous) at (0,34) size 784x420 - RenderHTMLCanvas {CANVAS} at (0,0) size 606x306 [border: (3px solid #008000)] - RenderText {#text} at (606,292) size 4x18 - text run at (606,292) width 4: " " - RenderText {#text} at (0,0) size 0x0 - RenderHTMLCanvas {CANVAS} at (610,0) size 106x306 [border: (3px solid #008000)] - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderHTMLCanvas {CANVAS} at (0,310) size 606x106 [border: (3px solid #008000)] - RenderText {#text} at (606,402) size 4x18 - text run at (606,402) width 4: " " - RenderText {#text} at (0,0) size 0x0 - RenderHTMLCanvas {CANVAS} at (610,310) size 106x106 [border: (3px solid #008000)] - RenderText {#text} at (0,0) size 0x0 diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvasDrawingIntoSelf-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvasDrawingIntoSelf-expected.html new file mode 100644 index 0000000..28f98ae --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvasDrawingIntoSelf-expected.html @@ -0,0 +1,2 @@ +<p>If this renders correctly you should see one big friendly green square.</p> +<div style="width:200px; height:200px; background-color:green;" ></div> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvasDrawingIntoSelf-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvasDrawingIntoSelf-expected.txt deleted file mode 100644 index 9b4a14c..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvasDrawingIntoSelf-expected.txt +++ /dev/null @@ -1 +0,0 @@ -If this renders correctly you should see one big friendly green square. diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvasDrawingIntoSelf.html b/third_party/WebKit/LayoutTests/fast/canvas/canvasDrawingIntoSelf.html index 04853c4..3f39ac8 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvasDrawingIntoSelf.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvasDrawingIntoSelf.html @@ -1,14 +1,12 @@ -If this renders correctly you should see one big friendly green square. +<p>If this renders correctly you should see one big friendly green square.</p> <canvas id="canvas" width="200" height="200" ></canvas> <script> -if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - var canvas = document.getElementById("canvas"); var context = canvas.getContext("2d"); +context.imageSmoothingEnabled = false; context.fillStyle = 'red'; context.fillRect(0,0,200,200); context.fillStyle = 'green'; context.fillRect(50,50,100,100); context.drawImage(canvas, 50, 50, 100, 100, 0, 0, 200, 200); -</script>
\ No newline at end of file +</script> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/check-stale-putImageData-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/check-stale-putImageData-expected.html new file mode 100644 index 0000000..61dc247 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/check-stale-putImageData-expected.html @@ -0,0 +1,10 @@ +<html><head></head><body> + 1, 3, and 4 should all show the same red square. 2 should show nothing. +<ol> +<li><canvas style="background-color:red;" width="100" height="100"></canvas></li> +<li><canvas width="100" height="100"></li> +<li><canvas style="background-color:red;" width="100" height="100"></li> +<li><canvas style="background-color:red;" width="100" height="100"></li> +</ol> + +</body></html> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/check-stale-putImageData-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/check-stale-putImageData-expected.txt deleted file mode 100644 index 2f8815f..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/check-stale-putImageData-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -CONSOLE MESSAGE: line 28: a == b? false -CONSOLE MESSAGE: line 35: a == c? false -1, 3, and 4 should all show the same red square. 2 should show nothing. - - - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/drawImage-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/drawImage-expected.html new file mode 100644 index 0000000..9255820 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/drawImage-expected.html @@ -0,0 +1,2 @@ +<p>If this renders correctly you should see one big friendly green square.</p> +<div style="width:200px; height:200px; background-color:green;" ></canvas> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/drawImage-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/drawImage-expected.txt deleted file mode 100644 index 9b4a14c..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/drawImage-expected.txt +++ /dev/null @@ -1 +0,0 @@ -If this renders correctly you should see one big friendly green square. diff --git a/third_party/WebKit/LayoutTests/fast/canvas/drawImage.html b/third_party/WebKit/LayoutTests/fast/canvas/drawImage.html index ce94c27..edc2a54 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/drawImage.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/drawImage.html @@ -1,10 +1,7 @@ -If this renders correctly you should see one big friendly green square. +<p>If this renders correctly you should see one big friendly green square.</p> <canvas id="canvas" width="200" height="200" ></canvas> <canvas id="canvas2" width="200" height="200" style="display:none" ></canvas> <script> -if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - var canvas = document.getElementById("canvas"); var canvas2 = document.getElementById("canvas2"); var context = canvas.getContext("2d"); @@ -13,5 +10,6 @@ context2.fillStyle = 'red'; context2.fillRect(0,0,200,200); context2.fillStyle = 'green'; context2.fillRect(50,50,100,100); +context.imageSmoothingEnabled = false; context.drawImage(canvas2, 50, 50, 100, 100, 0, 0, 200, 200); -</script>
\ No newline at end of file +</script> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/fill-stroke-clip-reset-path-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/fill-stroke-clip-reset-path-expected.html new file mode 100644 index 0000000..b3000b1 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/fill-stroke-clip-reset-path-expected.html @@ -0,0 +1,25 @@ +<html> +<head> +<script> +function testOne(operation) +{ + var context = document.getElementById(operation).getContext('2d'); + + context.fillStyle = "green"; + context.fillRect(0, 0, 1000, 1000); +} +function test() +{ + testOne("fill"); + testOne("stroke"); + testOne("clip"); +} +</script> +</head> +<body onload="test()"> +<p>All three of these small canvases should be green, not red.</p> +<canvas id="fill" width="20" height="20"></canvas> +<canvas id="stroke" width="20" height="20"></canvas> +<canvas id="clip" width="20" height="20"></canvas> +</body> +</html> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/fill-stroke-clip-reset-path-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/fill-stroke-clip-reset-path-expected.txt deleted file mode 100644 index 9f300b2..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/fill-stroke-clip-reset-path-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -All three of these small canvases should be green, not red. - - -All three of these small canvases should be green, not red, too, but these test the Dashboard compatibility mode so they work properly only under DumpRenderTree. - - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/fill-stroke-clip-reset-path.html b/third_party/WebKit/LayoutTests/fast/canvas/fill-stroke-clip-reset-path.html index 1b5b01f..126ed9e 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/fill-stroke-clip-reset-path.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/fill-stroke-clip-reset-path.html @@ -1,18 +1,11 @@ <html> <head> <script> -function testOne(operation, quirk) +function testOne(operation) { - if (window.testRunner){ - testRunner.dumpAsTextWithPixelResults(); - if (testRunner.setUseDashboardCompatibilityMode) - testRunner.setUseDashboardCompatibilityMode(quirk); - } + var context = document.getElementById(operation).getContext('2d'); - var canvas = document.getElementById(operation + "-" + (quirk ? "" : "no-") + "quirk"); - var context = canvas.getContext('2d'); - - context.fillStyle = quirk ? "green" : "red"; + context.fillStyle = "red"; context.fillRect(0, 0, 1000, 1000); context.moveTo(0, 0); @@ -22,28 +15,21 @@ function testOne(operation, quirk) context.closePath(); context[operation](); - context.fillStyle = quirk ? "red" : "green"; + context.fillStyle = "green"; context.fill(); } function test() { - testOne("fill", false); - testOne("stroke", false); - testOne("clip", false); - testOne("fill", true); - testOne("stroke", true); - testOne("clip", true); + testOne("fill"); + testOne("stroke"); + testOne("clip"); } </script> </head> <body onload="test()"> <p>All three of these small canvases should be green, not red.</p> -<canvas id="fill-no-quirk" width="20" height="20"></canvas> -<canvas id="stroke-no-quirk" width="20" height="20"></canvas> -<canvas id="clip-no-quirk" width="20" height="20"></canvas> -<p>All three of these small canvases should be green, not red, too, but these test the Dashboard compatibility mode so they work properly only under DumpRenderTree.</p> -<canvas id="fill-quirk" width="20" height="20"></canvas> -<canvas id="stroke-quirk" width="20" height="20"></canvas> -<canvas id="clip-quirk" width="20" height="20"></canvas> +<canvas id="fill" width="20" height="20"></canvas> +<canvas id="stroke" width="20" height="20"></canvas> +<canvas id="clip" width="20" height="20"></canvas> </body> </html> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/fillrect-gradient-zero-stops-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/fillrect-gradient-zero-stops-expected.html new file mode 100644 index 0000000..2c0fc4a --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/fillrect-gradient-zero-stops-expected.html @@ -0,0 +1,4 @@ +<body> +<p> +The canvas below should show a gradient with zero stops, which according to the specification is filled with transparant black, ie. not visible. This tests <a href="http://bugs.webkit.org/show_bug.cgi?id=13784">Bug 13784, REGRESSION (r13744-13750): Crash with empty gradient when drawing to canvas</a></p> +</body> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/fillrect-gradient-zero-stops-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/fillrect-gradient-zero-stops-expected.txt deleted file mode 100644 index a427cb3..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/fillrect-gradient-zero-stops-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -The canvas below should show a gradient with zero stops, which according to the specification is filled with transparant black, ie. not visible. This tests Bug 13784, REGRESSION (r13744-13750): Crash with empty gradient when drawing to canvas - - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/fillrect-gradient-zero-stops.html b/third_party/WebKit/LayoutTests/fast/canvas/fillrect-gradient-zero-stops.html index 10856fa..2aa5022a 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/fillrect-gradient-zero-stops.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/fillrect-gradient-zero-stops.html @@ -3,14 +3,9 @@ The canvas below should show a gradient with zero stops, which according to the specification is filled with transparant black, ie. not visible. This tests <a href="http://bugs.webkit.org/show_bug.cgi?id=13784">Bug 13784, REGRESSION (r13744-13750): Crash with empty gradient when drawing to canvas</a></p> <canvas id="c"></canvas> <script> -if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - window.onload = function () { var ctx = document.getElementById('c').getContext('2d'); ctx.fillStyle = ctx.createLinearGradient(0, 0, 0, 50); ctx.fillRect(0, 0, 300, 150); - ctx.strokeRect(0, 0, 300, 150); -} </script> </body> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/font-update-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/font-update-expected.html new file mode 100644 index 0000000..831ad82 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/font-update-expected.html @@ -0,0 +1,16 @@ +<style> + @font-face { + font-family: no-such-font; + src: url(no-such-file.ttf); + } +</style> +<canvas id="target"></canvas> +<script> + canvas = document.getElementById("target"); + ctx = canvas.getContext('2d'); + ctx.font = "100px no-such-font, ahem"; + ctx.fillStyle = "red"; + ctx.fillText("B", 0, 100); + ctx.fillStyle = "green"; + ctx.fillText("A", 0, 100); +</script> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/font-update-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/font-update-expected.txt deleted file mode 100644 index 8b13789..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/font-update-expected.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/font-update.html b/third_party/WebKit/LayoutTests/fast/canvas/font-update.html index 6b93a95..d621d89 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/font-update.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/font-update.html @@ -13,10 +13,8 @@ ctx.fillText("B", 0, 100); ctx.fillStyle = "green"; canvas.parentNode.removeChild(canvas); - if (window.testRunner) { - testRunner.dumpAsTextWithPixelResults(); + if (window.testRunner) testRunner.waitUntilDone(); - } setTimeout(function() { ctx.fillText("A", 0, 100); diff --git a/third_party/WebKit/LayoutTests/fast/canvas/patternfill-repeat-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/patternfill-repeat-expected.html new file mode 100644 index 0000000..4272fc0 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/canvas/patternfill-repeat-expected.html @@ -0,0 +1,73 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <title>createPattern repeat test</title> + <style> canvas { border:solid #000 } </style> + <script> + if (window.testRunner) { + testRunner.waitUntilDone(); + } + window.onload = function(){ + var i = new Image(); + i.src = "resources/apple.gif"; + i.onload = function() { + var ctx = document.getElementsByTagName('canvas')[0].getContext('2d'); + + var w = i.width; + var h = i.height; + //ctx.strokeWidth(1.0); + ctx.translate(10, 10); + ctx.save(); + ctx.beginPath(); + ctx.rect(0, 0, 150, 150); + ctx.clip(); + ctx.drawImage(i, 0, 0); + ctx.drawImage(i, 0, h); + ctx.drawImage(i, 0, 2*h); + ctx.drawImage(i, w, 0); + ctx.drawImage(i, w, h); + ctx.drawImage(i, w, 2*h); + ctx.drawImage(i, 2*w, 0); + ctx.drawImage(i, 2*w, h); + ctx.drawImage(i, 2*w, 2*h); + ctx.restore(); + + ctx.translate(0, 160); + ctx.save(); + ctx.beginPath(); + ctx.rect(0, 0, 150, 150); + ctx.clip(); + ctx.drawImage(i, 0, 0); + ctx.drawImage(i, w, 0); + ctx.drawImage(i, 2*w, 0); + ctx.restore(); + + ctx.translate(160, 0); + ctx.save() + ctx.beginPath(); + ctx.rect(0, 0, 150, 150); + ctx.clip(); + ctx.drawImage(i, 0, 0); + ctx.restore(); + + ctx.translate(0, -160); + ctx.save(); + ctx.beginPath(); + ctx.rect(0, 0, 150, 150); + ctx.clip(); + ctx.drawImage(i, 0, 0); + ctx.drawImage(i, 0, h); + ctx.drawImage(i, 0, 2*h); + ctx.restore(); + + if (window.testRunner) + testRunner.notifyDone(); + } + } + </script> + </head> + <body> + <p>There should be one big square below containing four squares. Top left square should be filled with 3 rows of 2 and bit Apple images. Top right square should be 2 and a bit rows with one Apple image column along the left edge of the square. Bottom left square should be one row with three Apple images along the top of the square. Bottom right square should be one Apple image in top left corner.</p> + <p><canvas height="330" width="330"></canvas></p> + </body> +</html> diff --git a/third_party/WebKit/LayoutTests/fast/canvas/patternfill-repeat-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/patternfill-repeat-expected.txt deleted file mode 100644 index 3dc976c..0000000 --- a/third_party/WebKit/LayoutTests/fast/canvas/patternfill-repeat-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -There should be one big square below containing four squares. Top left square should be filled with 3 rows of 2 and bit Apple images. Top right square should be 2 and a bit rows with one Apple image column along the left edge of the square. Bottom left square should be one row with three Apple images along the top of the square. Bottom right square should be one Apple image in top left corner. - - diff --git a/third_party/WebKit/LayoutTests/fast/canvas/patternfill-repeat.html b/third_party/WebKit/LayoutTests/fast/canvas/patternfill-repeat.html index b8a9021..cdc1144 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/patternfill-repeat.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/patternfill-repeat.html @@ -5,7 +5,6 @@ <style> canvas { border:solid #000 } </style> <script> if (window.testRunner) { - testRunner.dumpAsTextWithPixelResults(); testRunner.waitUntilDone(); } window.onload = function(){ @@ -19,25 +18,21 @@ p = ctx.createPattern(i, "repeat"); ctx.fillStyle = p; ctx.translate(10, 10); - ctx.strokeRect(0, 0, 150, 150); ctx.fillRect(0, 0, 150, 150); px = ctx.createPattern(i, "repeat-x"); ctx.fillStyle = px; ctx.translate(0, 160); - ctx.strokeRect(0, 0, 150, 150); ctx.fillRect(0, 0, 150, 150); pn = ctx.createPattern(i, "no-repeat"); ctx.fillStyle = pn; ctx.translate(160, 0); - ctx.strokeRect(0, 0, 150, 150); ctx.fillRect(0, 0, 150, 150); py = ctx.createPattern(i, "repeat-y"); ctx.fillStyle = py; ctx.translate(0, -160); - ctx.strokeRect(0, 0, 150, 150); ctx.fillRect(0, 0, 150, 150); if (window.testRunner) diff --git a/third_party/WebKit/LayoutTests/fast/canvas/zero-size-fill-rect.html b/third_party/WebKit/LayoutTests/fast/canvas/zero-size-fill-rect.html index 69d3a7f..44170c9 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/zero-size-fill-rect.html +++ b/third_party/WebKit/LayoutTests/fast/canvas/zero-size-fill-rect.html @@ -9,9 +9,8 @@ <head> <script type="text/javascript"> window.onload = function() { - if (window.testRunner) - testRunner.dumpAsTextWithPixelResults(); - + if (window.testRunner) + testRunner.dumpAsText(); var canvas = document.getElementById("test"); var context = canvas.getContext("2d"); context.fillStyle = '#f00'; diff --git a/third_party/WebKit/LayoutTests/platform/linux/virtual/gpu/fast/canvas/canvas-bg-expected.txt b/third_party/WebKit/LayoutTests/platform/linux/virtual/gpu/fast/canvas/canvas-bg-expected.txt deleted file mode 100644 index 2411c0a..0000000 --- a/third_party/WebKit/LayoutTests/platform/linux/virtual/gpu/fast/canvas/canvas-bg-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -layer at (0,0) size 785x620 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x620 - RenderBlock {HTML} at (0,0) size 785x620 - RenderBody {BODY} at (8,8) size 769x604 - RenderBlock {DIV} at (0,0) size 604x604 [border: (2px solid #000000)] diff --git a/third_party/WebKit/LayoutTests/platform/mac-lion/fast/canvas/canvas-bg-expected.txt b/third_party/WebKit/LayoutTests/platform/mac-lion/fast/canvas/canvas-bg-expected.txt deleted file mode 100644 index 2411c0a..0000000 --- a/third_party/WebKit/LayoutTests/platform/mac-lion/fast/canvas/canvas-bg-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -layer at (0,0) size 785x620 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x620 - RenderBlock {HTML} at (0,0) size 785x620 - RenderBody {BODY} at (8,8) size 769x604 - RenderBlock {DIV} at (0,0) size 604x604 [border: (2px solid #000000)] diff --git a/third_party/WebKit/LayoutTests/platform/mac-lion/virtual/gpu/fast/canvas/canvas-bg-expected.txt b/third_party/WebKit/LayoutTests/platform/mac-lion/virtual/gpu/fast/canvas/canvas-bg-expected.txt deleted file mode 100644 index 2411c0a..0000000 --- a/third_party/WebKit/LayoutTests/platform/mac-lion/virtual/gpu/fast/canvas/canvas-bg-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -layer at (0,0) size 785x620 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x620 - RenderBlock {HTML} at (0,0) size 785x620 - RenderBody {BODY} at (8,8) size 769x604 - RenderBlock {DIV} at (0,0) size 604x604 [border: (2px solid #000000)] diff --git a/third_party/WebKit/LayoutTests/platform/mac-snowleopard/fast/canvas/canvas-bg-expected.txt b/third_party/WebKit/LayoutTests/platform/mac-snowleopard/fast/canvas/canvas-bg-expected.txt deleted file mode 100644 index 2411c0a..0000000 --- a/third_party/WebKit/LayoutTests/platform/mac-snowleopard/fast/canvas/canvas-bg-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -layer at (0,0) size 785x620 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x620 - RenderBlock {HTML} at (0,0) size 785x620 - RenderBody {BODY} at (8,8) size 769x604 - RenderBlock {DIV} at (0,0) size 604x604 [border: (2px solid #000000)] diff --git a/third_party/WebKit/LayoutTests/platform/mac-snowleopard/virtual/gpu/fast/canvas/canvas-bg-expected.txt b/third_party/WebKit/LayoutTests/platform/mac-snowleopard/virtual/gpu/fast/canvas/canvas-bg-expected.txt deleted file mode 100644 index 2411c0a..0000000 --- a/third_party/WebKit/LayoutTests/platform/mac-snowleopard/virtual/gpu/fast/canvas/canvas-bg-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -layer at (0,0) size 785x620 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x620 - RenderBlock {HTML} at (0,0) size 785x620 - RenderBody {BODY} at (8,8) size 769x604 - RenderBlock {DIV} at (0,0) size 604x604 [border: (2px solid #000000)] diff --git a/third_party/WebKit/LayoutTests/platform/win/fast/canvas/canvas-size-change-after-layout-expected.txt b/third_party/WebKit/LayoutTests/platform/win/fast/canvas/canvas-size-change-after-layout-expected.txt deleted file mode 100644 index 38a5d177..0000000 --- a/third_party/WebKit/LayoutTests/platform/win/fast/canvas/canvas-size-change-after-layout-expected.txt +++ /dev/null @@ -1,15 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x600 - RenderBlock {HTML} at (0,0) size 800x600 - RenderBody {BODY} at (8,8) size 784x584 - RenderBlock {P} at (0,0) size 784x20 - RenderText {#text} at (0,0) size 312x19 - text run at (0,0) width 312: "These should be two identical green hollow squares:" - RenderBlock (anonymous) at (0,36) size 784x61 - RenderHTMLCanvas {CANVAS} at (0,0) size 56x56 [border: (3px solid #008000)] - RenderText {#text} at (56,41) size 4x19 - text run at (56,41) width 4: " " - RenderHTMLCanvas {CANVAS} at (60,0) size 56x56 [border: (3px solid #008000)] - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/third_party/WebKit/LayoutTests/platform/win/fast/canvas/canvas-zoom-expected.txt b/third_party/WebKit/LayoutTests/platform/win/fast/canvas/canvas-zoom-expected.txt deleted file mode 100644 index baa71e3..0000000 --- a/third_party/WebKit/LayoutTests/platform/win/fast/canvas/canvas-zoom-expected.txt +++ /dev/null @@ -1,22 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x600 - RenderBlock {HTML} at (0,0) size 800x600 - RenderBody {BODY} at (8,8) size 784x584 - RenderBlock {P} at (0,0) size 784x20 - RenderText {#text} at (0,0) size 598x19 - text run at (0,0) width 598: "These should be four green hollow boxes with dimensions 600x300, 100x300, 600x100, 100x100." - RenderBlock (anonymous) at (0,36) size 784x422 - RenderHTMLCanvas {CANVAS} at (0,0) size 606x306 [border: (3px solid #008000)] - RenderText {#text} at (606,291) size 4x19 - text run at (606,291) width 4: " " - RenderText {#text} at (0,0) size 0x0 - RenderHTMLCanvas {CANVAS} at (610,0) size 106x306 [border: (3px solid #008000)] - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderHTMLCanvas {CANVAS} at (0,311) size 606x106 [border: (3px solid #008000)] - RenderText {#text} at (606,402) size 4x19 - text run at (606,402) width 4: " " - RenderText {#text} at (0,0) size 0x0 - RenderHTMLCanvas {CANVAS} at (610,311) size 106x106 [border: (3px solid #008000)] - RenderText {#text} at (0,0) size 0x0 diff --git a/third_party/WebKit/LayoutTests/platform/win/virtual/gpu/fast/canvas/canvas-bg-expected.txt b/third_party/WebKit/LayoutTests/platform/win/virtual/gpu/fast/canvas/canvas-bg-expected.txt deleted file mode 100644 index cb51568..0000000 --- a/third_party/WebKit/LayoutTests/platform/win/virtual/gpu/fast/canvas/canvas-bg-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -layer at (0,0) size 785x620
- RenderView at (0,0) size 785x600
-layer at (0,0) size 785x620
- RenderBlock {HTML} at (0,0) size 785x620
- RenderBody {BODY} at (8,8) size 769x604
- RenderBlock {DIV} at (0,0) size 604x604 [border: (2px solid #000000)]
|