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

Side by Side 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, 6 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
4 <style>
5 #noSpecifiedHotspot {
6 cursor: url('file:///test.ico'), auto;
7 }
8 #specifiedHotspot {
9 cursor: url('file:///test.ico') 10 20, auto;
10 }
11 </style>
12 <div id="noSpecifiedHotspot"></div>
13 <div id="specifiedHotspot"></div>
14 <script>
15 test(function(){
16 assert_equals(getComputedStyle(noSpecifiedHotspot).cursor, 'url("file:///tes t.ico"), auto');
17 }, "Cursor computed style does not includes the hotspot if it's not specified");
18
19 test(function(){
20 assert_equals(getComputedStyle(specifiedHotspot).cursor, 'url("file:///test. ico") 10 20, auto');
21 }, "Cursor computed style includes the hotspot if it's specified");
22 </script>
OLDNEW
« 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