diff options
Diffstat (limited to 'remote/test/puppeteer/test/assets/frames/two-frames.html')
-rw-r--r-- | remote/test/puppeteer/test/assets/frames/two-frames.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/remote/test/puppeteer/test/assets/frames/two-frames.html b/remote/test/puppeteer/test/assets/frames/two-frames.html new file mode 100644 index 0000000000..b2ee853eda --- /dev/null +++ b/remote/test/puppeteer/test/assets/frames/two-frames.html @@ -0,0 +1,13 @@ +<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> |