Bug 1837620 - Part 6: Make edges for multiple shape guard weak too r=sfink
[gecko.git] / layout / reftests / meta-viewport / device-height-for-width.html
blob000adc763eb6e1606486d6a8768fa2f85e6b52a4
1 <!DOCTYPE html>
2 <meta name="viewport" content="width=device-height">
3 <style>
4 html, body {
5 margin: 0;
6 width: 100%;
7 height: 100%;
8 scrollbar-width: none;
10 #container {
11 position: relative;
13 #inner {
14 position: absolute;
15 top: 0;
16 left: 0;
17 width: 100px;
18 height: 100px;
19 background: green;
21 </style>
22 <div id="container">
23 <div id="inner"></div>
24 </div>