blob: 6343be70edbaace3bf967c8f00af1a651730ac25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<!--
This test case is initially scaled to 1.x by initial-scale=1 in the meta
viewport tag below, then scaled down to 0.25x by reftest-resolution="0.25"
-->
<html reftest-resolution="0.25">
<meta name="viewport" content="width=device-width,minimum-scale=0.25,initial-scale=1">
<style>
html {
background-color: green;
}
html, body {
margin: 0;
width: 100%;
height: 100%;
scrollbar-width: none; /* avoid drawing scrollbars */
}
#quadruple-width {
background-color: red;
width: 400%;
height: 100%;
position: absolute;
}
</style>
<div id="quadruple-width"></div>
</html>
|