blob: dcb6cd58402f7378f38eab858343eb3eed04868d [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>display:list-item shouldn't crash when combined with custom cursor image</title>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
</head>
<body>
<script>
test(function() {
// PASS if not crash.
// https://crbug.com/627811
document.body.style.cursor = "url('?'),auto";
document.body.style.display = "list-item";
}, 'Testing display:list-item wont crash.');
</script>
</body>
</html>