blob: 2c081dcb3ba4b0dc4ba18dc069517791ae2de8eb (
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>
<html>
<head>
<title>Composited iframe test</title>
<style type="text/css" media="screen">
object {
position: absolute;
left:100px;
top:100px;
padding: 0;
height: 300px;
width: 400px;
}
.testbox {
height: 200px;
width: 200px;
margin: 110px;
background-color: red;
}
</style>
</head>
<body>
<div class="testbox"></div>
<object type="text/html" data="resources/composited-subframe.html"></object>
</body>
</html>
|