Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: third_party/WebKit/LayoutTests/csspaint/paint-arguments-expected.html

Issue 2868003002: CSSPaint: Move layout tests in csspaint/ to http/tests/csspaint/ (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/csspaint/paint-arguments-expected.html
diff --git a/third_party/WebKit/LayoutTests/csspaint/paint-arguments-expected.html b/third_party/WebKit/LayoutTests/csspaint/paint-arguments-expected.html
deleted file mode 100644
index 3352acf6518d9ffd1ffee5a8ecab4b7f292a038d..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/csspaint/paint-arguments-expected.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-#background {
- background-color: yellow;
- display: inline-block;
-}
-
-.container {
- font-size: 0px;
-}
-</style>
-</head>
-<body>
-
-<div id="background">
- <div class="container">
- <canvas id ="box-green" width="100" height="100"></canvas>
- </div>
- <div class="container">
- <canvas id ="box-red" width="100" height="100"></canvas>
- </div>
-</div>
-
-<script>
-function drawCanvas(canvasID, color) {
- var canvas = document.getElementById(canvasID);
- var context = canvas.getContext("2d", {alpha: true});
- context.clearRect(0, 0, canvas.width, canvas.height);
- context.strokeStyle = color;
- context.lineWidth = 4;
- context.strokeRect(20, 20, 60, 60);
-};
-
-drawCanvas('box-green', 'green');
-drawCanvas('box-red', 'red');
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698