summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/first-letter-block-to-inline.html
blob: 94f27e6a6665ab1024e1c6367c46a6976a4eec24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<title>CSS Test: ::first-letter stops applying to element becoming inline.</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<link rel="match" href="first-letter-block-to-inline-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-letter-pseudo">
<style>
  #outer.block::first-letter { color: red }
  #outer.block { display: block }
</style>
<span id="outer" class="block">
  <span id="inner">This text should be green.</span>
</span>
<script>
  outer.offsetTop;
  outer.className = "";
  inner.style.color = "green";
</script>