blob: c5dd2eab6c95ef33dc4114a2487f186c057e53dc (
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>
<html>
<meta charset="utf8">
<title>CSS Content Visibility: hidden container is not breakable (reference)</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
<style>
#parent {
width: 100px;
}
#container {
border-top: solid green 50px;
border-bottom: solid green 50px;
}
</style>
<p>Test passes if there is a solid green square below.
<div id="parent">
<div id="container"></div>
</div>
|