gecko/browser/devtools/shared/test/browser_layoutHelpers.html
Thaddee Tyl c5d47eb42c Bug 724585 - We need a way to scroll a page to center an element if the element is not visible; r=rcampbell
--HG--
extra : rebase_source : 1dd1770cc77eaeed188db07da8a8254475767296
2012-06-12 13:43:00 +03:00

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>