mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
411 B
HTML
26 lines
411 B
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
<title> Layout Helpers </title>
|
|
|
|
<style>
|
|
html {
|
|
height: 300%;
|
|
width: 300%;
|
|
}
|
|
div#some {
|
|
position: absolute;
|
|
background: black;
|
|
width: 2px;
|
|
height: 2px;
|
|
}
|
|
iframe {
|
|
position: absolute;
|
|
width: 40px;
|
|
height: 40px;
|
|
border: 0;
|
|
}
|
|
</style>
|
|
|
|
<div id=some></div>
|
|
<iframe id=frame src='./browser_layoutHelpers_iframe.html'></iframe>
|