1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/shared/test/browser_layoutHelpers.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<!doctype html> 1.5 +<meta charset=utf-8> 1.6 +<title> Layout Helpers </title> 1.7 + 1.8 +<style> 1.9 + html { 1.10 + height: 300%; 1.11 + width: 300%; 1.12 + } 1.13 + div#some { 1.14 + position: absolute; 1.15 + background: black; 1.16 + width: 2px; 1.17 + height: 2px; 1.18 + } 1.19 + iframe { 1.20 + position: absolute; 1.21 + width: 40px; 1.22 + height: 40px; 1.23 + border: 0; 1.24 + } 1.25 +</style> 1.26 + 1.27 +<div id=some></div> 1.28 +<iframe id=frame src='./browser_layoutHelpers_iframe.html'></iframe>