20 lines
392 B
HTML
20 lines
392 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<link rel=author href="mailto:masonf@chromium.org">
|
|
<link rel="stylesheet" href="resources/popover-styles.css">
|
|
|
|
<div class=topmost></div>
|
|
<div class=fake-popover>This is a popover</div>
|
|
|
|
<style>
|
|
.topmost {
|
|
position:fixed;
|
|
top:0;
|
|
left:0;
|
|
width:1000px;
|
|
height:1000px;
|
|
background:green;
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
</style>
|