playwright/test/assets/frames/two-frames.html

14 lines
224 B
HTML
Raw Normal View History

2019-11-19 03:18:28 +01:00
<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>