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

Unified Diff: third_party/WebKit/LayoutTests/canvas/philip/tests/2d.fillStyle.parse.invalid.hex4.html

Issue 1936913002: [CSS] Accept 8 (#RRGGBBAA) and 4 (#RGBA) value hex colors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add quirks mode fastParseColorInternal() test cases. Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/canvas/philip/tests/2d.fillStyle.parse.invalid.hex4-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/canvas/philip/tests/2d.fillStyle.parse.invalid.hex4.html
diff --git a/third_party/WebKit/LayoutTests/canvas/philip/tests/2d.fillStyle.parse.invalid.hex4.html b/third_party/WebKit/LayoutTests/canvas/philip/tests/2d.fillStyle.parse.invalid.hex4.html
deleted file mode 100644
index b76572eab4cb0c164b8ebc32d127d84b1fa75a7a..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/canvas/philip/tests/2d.fillStyle.parse.invalid.hex4.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<title>Canvas test: 2d.fillStyle.parse.invalid.hex4</title>
-<script src="../tests.js"></script>
-<link rel="stylesheet" href="../tests.css">
-<body>
-<p id="passtext">Pass</p>
-<p id="failtext">Fail</p>
-<p class="output">These images should be identical:</p>
-<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
-<p class="output expectedtext">Expected output:<p><img src="green-100x50.png" class="output expected" id="expected" alt="">
-<ul id="d"></ul>
-<script>
-_addTest(function(canvas, ctx) {
-
-
-ctx.fillStyle = '#0f0';
-try { ctx.fillStyle = '#ff00'; } catch (e) { } // this shouldn't throw, but it shouldn't matter here if it does
-ctx.fillRect(0, 0, 100, 50);
-_assertPixel(canvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
-
-
-});
-</script>
-
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/canvas/philip/tests/2d.fillStyle.parse.invalid.hex4-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698