blob: 2dc0d558b634279a09703798e9a531748215a563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<meta charset="utf-8">
<link rel=author href="mailto:masonf@chromium.org">
<link rel="stylesheet" href="resources/popover-styles.css">
<div class=fake-popover>This content should be visible and green</div>
<div class=fake-popover style="top:100px;">This content should be visible and green</div>
<div class=fake-popover style="top:200px;">This content should be visible and green</div>
<style>
.fake-popover {
top: 0;
margin:10px;
width: 300px;
height: 50px;
background: green;
}
</style>
|