gecko-dev/layout/reftests/first-line/insertion-in-first-line-7.html

11 строки
246 B
HTML

<!DOCTYPE html>
<style>
div { color: red; }
div::first-line { color: green }
</style>
<div id="x"><span id="y">green</span></div>
<script>
x.offsetWidth;
y.insertBefore(document.createTextNode('This should be '), y.firstChild);
</script>