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

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

Issue 23816008: Drop CSS cursor quirk for missing fallback cursor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added default pointer fallback to cursor rule in http test Created 7 years, 3 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 | LayoutTests/fast/css/cursor-parsing-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/cursor-parsing.html
diff --git a/LayoutTests/fast/css/cursor-parsing.html b/LayoutTests/fast/css/cursor-parsing.html
index 892f3912c566984962319dcac379698836fa79b1..bfe51314cf4071928f384abf531767775c084c8c 100644
--- a/LayoutTests/fast/css/cursor-parsing.html
+++ b/LayoutTests/fast/css/cursor-parsing.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<!DOCTYPE HTML>
<html>
<head>
<script src="../js/resources/js-test-pre.js"></script>
@@ -44,7 +44,6 @@ testCursorRule('auto');
testCursorRule('none');
testCursorRule('copy');
testCursorRule('-webkit-grabbing');
-testCursorRule('url(file:///foo.png)'); // IE compatibility
testCursorRule('url(file:///foo.png), crosshair');
testCursorRule('url(file:///foo.png), url(file:///foo2.png), pointer');
testCursorRule('url(file:///foo.png) 12 3, pointer');
@@ -59,6 +58,8 @@ debug('Test a bunch of invalid cursor rules which shouldn\'t parse at all.');
testInvalidCursorRule('nonexistent');
testInvalidCursorRule('ltr');
testInvalidCursorRule('inline');
+testInvalidCursorRule('hand');
+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');
« no previous file with comments | « no previous file | LayoutTests/fast/css/cursor-parsing-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698