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'); |