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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/cursor-parsing.html

Issue 1541443002: Fix small bugs in new CSS Property parser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 4 years, 11 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/css/cursor-parsing.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/cursor-parsing.html b/third_party/WebKit/LayoutTests/fast/css/cursor-parsing.html
index 01b67f120d9c01edf3393d972cc55ca4e7ecf24b..9b2467ab7e8193956a57743f1c1e4f2648dfd228 100644
--- a/third_party/WebKit/LayoutTests/fast/css/cursor-parsing.html
+++ b/third_party/WebKit/LayoutTests/fast/css/cursor-parsing.html
@@ -64,11 +64,13 @@ testInvalidCursorRule('ltr');
testInvalidCursorRule('inline');
testInvalidCursorRule('hand');
testInvalidCursorRule('url("file:///foo.png")');
+testInvalidCursorRule('url("file:///foo.png"),');
testInvalidCursorRule('url("file:///foo.png"), url("file:///foo2.png")');
testInvalidCursorRule('url("file:///foo.png") 12');
testInvalidCursorRule('url("file:///foo.png") 12 3 5');
testInvalidCursorRule('url("file:///foo.png") x y');
testInvalidCursorRule('url("file:///foo.png") auto');
+testInvalidCursorRule('url("file:///foo.png") hand');
successfullyParsed = true;
</script>

Powered by Google App Engine
This is Rietveld 408576698