summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/frames/two-frames.html
blob: 9c7a6cbca1f27e47d333d1687b703a0de932e851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<style>
body {
    display: flex;
    flex-direction: column;
}

body iframe {
    flex-grow: 1;
    flex-shrink: 1;
}
</style>
<iframe src='./frame.html' name='uno'></iframe>
<iframe src='./frame.html' name='dos'></iframe>