diff options
Diffstat (limited to 'WebKitTools/Scripts/webkitpy/layout_tests/data/image')
5 files changed, 0 insertions, 60 deletions
diff --git a/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-bg.html b/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-bg.html deleted file mode 100644 index 2022676..0000000 --- a/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-bg.html +++ /dev/null @@ -1,22 +0,0 @@ -<html> - <head> - <style> - div { background: -webkit-canvas(squares); width:600px; height:600px; border:2px solid black } - </style> - - <script type="application/x-javascript"> -function draw(w, h) { - var ctx = document.getCSSCanvasContext("2d", "squares", w, h); - - ctx.fillStyle = "rgb(200,0,0)"; - ctx.fillRect (10, 10, 55, 50); - - ctx.fillStyle = "rgba(0, 0, 200, 0.5)"; - ctx.fillRect (30, 30, 55, 50); -} - </script> - </head> - <body onload="draw(300, 300)"> - <div></div> - </body> -</html>
\ No newline at end of file diff --git a/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.checksum b/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.checksum deleted file mode 100644 index 7373fe2..0000000 --- a/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -afa0f2d246120c180005d67d47636b92
\ No newline at end of file diff --git a/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.png b/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.png Binary files differdeleted file mode 100644 index 44952b4..0000000 --- a/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.png +++ /dev/null diff --git a/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.txt b/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.txt deleted file mode 100644 index 288458d..0000000 --- a/WebKitTools/Scripts/webkitpy/layout_tests/data/image/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/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom.html b/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom.html deleted file mode 100644 index 4dabce1..0000000 --- a/WebKitTools/Scripts/webkitpy/layout_tests/data/image/canvas-zoom.html +++ /dev/null @@ -1,15 +0,0 @@ -<style> - canvas { border: solid green; - zoom: 2; } -</style> -<p> - These should be four green hollow boxes with dimensions 600x300, 100x300, 600x100, 100x100. -</p> -<!-- 300x150 --> -<canvas id="canvas"></canvas> -<!-- 50x150 --> -<canvas id="canvas" width="50"></canvas> -<!-- 300x50 --> -<canvas id="canvas" height="50"></canvas> -<!-- 50x50 --> -<canvas id="canvas" width="50" height="50"></canvas> |