blob: 09356a3b614c38e6fa39fd9591fa37a53a1c16b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!doctype HTML>
<html>
<meta charset="utf8">
<title>Display Locking: iframe locking (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>
div {
background: blue;
color: white;
}
</style>
<div>Test passes if there is a box with no text below.</div>
<iframe id="frame" width=400 height=200 srcdoc=''></iframe>
<div>Test passes if there is a box with no text above.</div>
|