blob: 5985fc850f80983fe3e0beb312c737c413f9cccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Containment Test: 'contain: strict' and block box</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="help" href="https://www.w3.org/TR/css-contain-1/#contain-property">
<link rel="match" href="reference/contain-paint-size-001-ref.html">
<style>
div
{
background-color: red;
border: green solid 1em;
color: red;
contain: strict;
font-size: 20px;
width: 166px;
}
</style>
<p>Test passes if there is a short horizontal green stripe and <strong>no red</strong>.
<div>FAIL FAIL FAIL FAIL FAIL FAIL</div>
|