chromium/third_party/blink/web_tests/fast/css/cursor-image-list-item-crash.html

<!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>