blob: 59b2304d9efff8796c1191c5f22627c0e18c60a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!doctype html>
<meta charset="utf8">
<title>CSS Content Visibility: popover shows when rendered (ref)</title>
<style>
.box { width: 100px; height: 100px; border: 1px solid black; }
#popover { outline: none; }
</style>
<div id=container class=box>
This test passes if you can see “PASS” in a white box.
<div popover id=popover>PASS<div id=inner></div></div>
</div>
text
<script>
popover.showPopover();
</script>
|