summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/frames/two-frames.html
diff options
context:
space:
mode:
Diffstat (limited to 'remote/test/puppeteer/test/assets/frames/two-frames.html')
-rw-r--r--remote/test/puppeteer/test/assets/frames/two-frames.html13
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>