OLD | NEW |
(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> |
OLD | NEW |