| Index: third_party/WebKit/LayoutTests/fast/css/cursor-image-list-item-crash.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css/cursor-image-list-item-crash.html b/third_party/WebKit/LayoutTests/fast/css/cursor-image-list-item-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dcb6cd58402f7378f38eab858343eb3eed04868d
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/css/cursor-image-list-item-crash.html
|
| @@ -0,0 +1,18 @@
|
| +<!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>
|
|
|