Index: third_party/WebKit/LayoutTests/svg/css/cursor-change-href.svg |
diff --git a/third_party/WebKit/LayoutTests/svg/css/cursor-change-href.svg b/third_party/WebKit/LayoutTests/svg/css/cursor-change-href.svg |
index da5e169b4f86bec62faac53855429bdf7a96f8a7..1086335281df4b9977adce92081b0a4fab4e7eb0 100644 |
--- a/third_party/WebKit/LayoutTests/svg/css/cursor-change-href.svg |
+++ b/third_party/WebKit/LayoutTests/svg/css/cursor-change-href.svg |
@@ -17,14 +17,14 @@ |
var result1 = document.getElementById("result1").firstChild; |
var result2 = document.getElementById("result2").firstChild; |
- if (getComputedStyle(rect).cursor == "url(\"file:///icon1.ico\"), auto") |
+ if (getComputedStyle(rect).cursor == "url(\"file:///icon1.ico\") 0 0, auto") |
result1.data = "PASS"; |
else |
result1.data = "FAIL - " + getComputedStyle(rect).cursor; |
document.getElementById("cursor").setAttribute("xlink:href", "file:///icon2.ico"); |
- if (getComputedStyle(rect).cursor == "url(\"file:///icon2.ico\"), auto") |
+ if (getComputedStyle(rect).cursor == "url(\"file:///icon2.ico\") 0 0, auto") |
result2.data = "PASS"; |
else |
result2.data = "FAIL - " + getComputedStyle(rect).cursor; |