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

Unified Diff: third_party/WebKit/LayoutTests/svg/css/cursor-change-href.svg

Issue 2028493002: Fixed getComputedStyle().cursor to include hotSpot if defined (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test Created 4 years, 7 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/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;

Powered by Google App Engine
This is Rietveld 408576698