summaryrefslogtreecommitdiffstats
path: root/layout/reftests/first-line/insertion-in-first-line-6.html
blob: 853bce03188df4cce25587cba311a44e6450b1c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<style>
  div { color: red; }
  div::first-line { color: green }
</style>
<div id="x"><span id="y">This should be </span></div>
<script>
  x.offsetWidth;
  var span = document.createElement('span');
  span.textContent = 'green';
  y.appendChild(span);
</script>