Bug 1858983 [wpt PR 42532] - Update wpt metadata, a=testonly
[gecko.git] / layout / reftests / meta-viewport / initial-scale-0.html
blobf29f8ce1a47a5a8b6639f085fcbc8f32e1b2cb20
1 <!DOCTYPE html>
2 <meta name="viewport" content="initial-scale=0,width=device-width">
3 <style>
4 html, body {
5 margin: 0;
6 width: 100%;
7 height: 100%;
8 scrollbar-width: none;
10 #container {
11 min-width: 1600px; /* this value should be greater than viewport width */
12 min-height: 3000px;
13 position: relative;
15 #inner {
16 position: absolute;
17 top: 0;
18 left: 0;
19 width: 100px;
20 height: 100px;
21 background: green;
23 </style>
24 <div id="container">
25 <div id="inner"></div>
26 </div>