blob: 7091dd930dd984d75c13e23474cb5366736e568e (
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 in an iframe</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
<link rel="match" href="content-visibility-004-ref.html">
<meta name="assert" content="content-visibility hidden makes iframe contents hidden">
<p>Test passes if the word “Fail” does not appear in the box below.</p>
<iframe id="frame" srcdoc='
<style>
#container {
width: 100px;
height: 100px;
content-visibility: hidden;
}
</style>
<div id="container">Fail</div>
'></iframe>
</html>
|