summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/first-line-with-inline-block-before.html
blob: 8b454faeda368c4d07fb5767991fc25665ec596a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<title>inline block ::before styles should apply inside ::first-line</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#generated-content">
<link rel="match" href="first-line-with-inline-block-before-ref.html">
<style>
  #target::first-line {
    color: red;
  }
  #target::before {
    content: "green";
    color: green;
    display: inline-block;
  }
</style>
<div id="target">red</div>