| Index: LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash.html
|
| diff --git a/LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash.html b/LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..706bd8f7942c76a53bed38d81610d3ac1092d1b7
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css-generated-content/empty-first-letter-with-columns-crash.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +.slider { -webkit-appearance: media-volume-slider-mute-button; }
|
| +*:first-letter { pointer-events: fill; }
|
| +</style>
|
| +<body style="-webkit-column-count: 2">
|
| + <div>
|
| + <button></button>
|
| + <table id="table" style="-webkit-column-span: all"></table>
|
| + </div>
|
| +<script>
|
| +document.body.offsetHeight;
|
| +document.body.appendChild(document.createElement('div'));
|
| +document.getElementById('table').className = 'slider'
|
| +
|
| +if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| +
|
| +document.write("PASS. Test didn't crash.");
|
| +</script>
|
| +</body>
|
|
|