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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/cursor-hotspot-computed-style.html

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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/css/cursor-change-href.svg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/css/cursor-hotspot-computed-style.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/cursor-hotspot-computed-style.html b/third_party/WebKit/LayoutTests/fast/css/cursor-hotspot-computed-style.html
new file mode 100644
index 0000000000000000000000000000000000000000..27c8d78940e371f531bf37404df63f96a426c8a1
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css/cursor-hotspot-computed-style.html
@@ -0,0 +1,22 @@
+<!doctype html>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<style>
+#noSpecifiedHotspot {
+ cursor: url('file:///test.ico'), auto;
+}
+#specifiedHotspot {
+ cursor: url('file:///test.ico') 10 20, auto;
+}
+</style>
+<div id="noSpecifiedHotspot"></div>
+<div id="specifiedHotspot"></div>
+<script>
+test(function(){
+ assert_equals(getComputedStyle(noSpecifiedHotspot).cursor, 'url("file:///test.ico"), auto');
+}, "Cursor computed style does not includes the hotspot if it's not specified");
+
+test(function(){
+ assert_equals(getComputedStyle(specifiedHotspot).cursor, 'url("file:///test.ico") 10 20, auto');
+}, "Cursor computed style includes the hotspot if it's specified");
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/css/cursor-change-href.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698