summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/compositing/framesets/composited-frame-alignment.html
blob: 74015c5f3ed51d478b44b5a9f3fd022ee8b8e70a (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>
<head>
  <title>Composited frame test</title>
  <style type="text/css" media="screen">
    #frame2 {
        position: absolute;
        left:100px;
        top:100px;
        padding: 0;
        height: 300px;
        width: 400px;
    }
  </style>
</head>
<frameset rows="*,400">
    <frame></frame>
    <frame id="frame2" src="resources/composited-subframe.html">
    </frame>
</frameset>
</html>