summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-paint-baseline-001.html
blob: c44444dd05b9869f494df0c657c8adc4a3b3c5fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang=en>
  <meta charset=utf-8>
  <title>CSS-contain test: paint containment and baselines</title>
  <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
  <meta name=assert content="contain:paint does not suppress baseline alignment">
  <link rel="match" href="reference/contain-baseline-ref.html">
  <link rel=help href="https://drafts.csswg.org/css-contain-1/#containment-paint">

<style>
div {
  display: inline-block;
  height: 5px;
  background: blue;
  width: 50px;
  contain: paint;
  color: transparent;
  font-size: 100px;
}
</style>

<p>Test passes if there are two, not one, blue lines below.</p>
<div></div><div>a</div>