OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>display:list-item shouldn't crash when combined with custom cursor image< /title> | |
5 <script src="../../resources/testharness.js"></script> | |
6 <script src="../../resources/testharnessreport.js"></script> | |
7 </head> | |
8 <body> | |
9 <script> | |
10 test(function() { | |
11 // PASS if not crash. | |
12 // https://crbug.com/627811 | |
13 document.body.style.cursor = "url('?'),auto"; | |
14 document.body.style.display = "list-item"; | |
15 }, 'Testing display:list-item wont crash.'); | |
16 </script> | |
17 </body> | |
18 </html> | |
OLD | NEW |