blob: ddf5bda1722ec0e0823fd5096946e5904c985d00 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<!--
A variant test of partial-prerender-translate-5.html but in this test the
position:fixed element is inside an iframe.
-->
<style>
html {
overflow: hidden;
}
body {
margin: 0px;
padding: 0px;
}
</style>
<iframe style="width:400px; height:1000px; border: 0"
srcdoc="<!DOCTYPE HTML>
<html>
<style>
html {
overflow-x: hidden;
scrollbar-width: none;
}
html, body {
margin: 0;
padding: 0;
}
#target {
width: 1600px;
height: 1000px;
transform: translateX(-725px);
}
</style>
<div id='target'>
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1000'>
<rect fill='green' x='0' width='800' height='1000'></rect>
<rect fill='blue' x='800' width='325' height='1000'></rect>
<rect fill='red' x='1125' width='675' height='1000'></rect>
</svg>
</div>
</html>">
</iframe>
</html>
|