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