summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/popup
diff options
context:
space:
mode:
Diffstat (limited to 'remote/test/puppeteer/test/assets/popup')
-rw-r--r--remote/test/puppeteer/test/assets/popup/popup.html9
-rw-r--r--remote/test/puppeteer/test/assets/popup/window-open.html11
2 files changed, 20 insertions, 0 deletions
diff --git a/remote/test/puppeteer/test/assets/popup/popup.html b/remote/test/puppeteer/test/assets/popup/popup.html
new file mode 100644
index 0000000000..b855162c25
--- /dev/null
+++ b/remote/test/puppeteer/test/assets/popup/popup.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Popup</title>
+ </head>
+ <body>
+ I am a popup
+ </body>
+</html>
diff --git a/remote/test/puppeteer/test/assets/popup/window-open.html b/remote/test/puppeteer/test/assets/popup/window-open.html
new file mode 100644
index 0000000000..d138be1d22
--- /dev/null
+++ b/remote/test/puppeteer/test/assets/popup/window-open.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Popup test</title>
+ </head>
+ <body>
+ <script>
+ window.open('./popup.html');
+ </script>
+ </body>
+</html>