blob: 2c98a7eb6aaefad2efc34c441dfa29a7fec52057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html reftest-resolution="1.5">
<style>
div {
margin-left: 100px;
margin-top: 100px;
width: 400px;
height: 400px;
border: 2px blue solid;
}
iframe {
width: 350px;
height: 350px;
border: 2px black solid;
}
</style>
<div>
<iframe src="iframe-zoomed-child.html"></iframe>
</div>
</html>
|