summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/normal-flow/block-in-inline-first-line-001-ref.html
blob: 01fcf2a323a9246ada4a6b7628b61771a0db4f07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<style>
div::first-line {
  background: orange;
}
</style>
<body>
  <div>
    First line.<br>
    Second line.
  </div>
  <div>
    First line in 1st block box.<br>
    Second line.
  </div>
  <div>
    First line in 2nd block box.<br>
    Second line.<br>
    First line after block-in-inline is not ::first-line.<br>
    Second line.
  </div>
</body>