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

Unified Diff: third_party/WebKit/LayoutTests/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js

Issue 1419223002: Move text-shadow/box-shadow properties into CSSPropertyParser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix failures Created 5 years, 2 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/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js
diff --git a/third_party/WebKit/LayoutTests/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js b/third_party/WebKit/LayoutTests/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js
index 3f38e0e34225389401be5cc2a7881f848a44820b..03f99aff3435be02e888bf5e46231dc1c5df4ad1 100644
--- a/third_party/WebKit/LayoutTests/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js
+++ b/third_party/WebKit/LayoutTests/fast/box-shadow/script-tests/box-shadow-parsing-invalid.js
@@ -26,5 +26,7 @@ function testInvalidFilterRule(description, rule)
testInvalidFilterRule("Negative blur radius value", "10px 10px -1px rgb(255, 0, 0)");
testInvalidFilterRule("Negative blur radius value, with a spread defined", "10px 10px -1px 10px rgb(255, 0, 0)");
testInvalidFilterRule("Negative blur radius value, with a negative spread defined", "10px 10px -1px -1px rgb(255, 0, 0)");
+testInvalidFilterRule("Extraneous commas at beginning", ",,,,,10px 10px rgb(255, 0, 0)");
+testInvalidFilterRule("Extraneous commas at end", "10px 10px rgb(255, 0, 0),,,,,");
successfullyParsed = true;

Powered by Google App Engine
This is Rietveld 408576698