gecko-dev/layout/base/crashtests/1505420.html
Emilio Cobos Álvarez 4f99ddecde Bug 1505420 - Remove the first-letter bit from the first-line parent's first continuation. r=bzbarsky
Since the first-line could've been pushed to another column.

Differential Revision: https://phabricator.services.mozilla.com/D11352

--HG--
extra : moz-landing-system : lando
2018-11-08 17:58:58 +00:00

20 lines
332 B
HTML

<style>
*::first-letter {}
</style>
<li id="list">
</li>
<script>
list.offsetTop;
let s = document.createElement('style');
s.textContent = `
* {
columns: 56;
}
*::first-line { }
`;
document.documentElement.appendChild(s);
list.innerText = 'ó';
list.offsetTop;
list.textContent = '';
</script>