summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/consolelog.html
diff options
context:
space:
mode:
Diffstat (limited to 'remote/test/puppeteer/test/assets/consolelog.html')
-rw-r--r--remote/test/puppeteer/test/assets/consolelog.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/remote/test/puppeteer/test/assets/consolelog.html b/remote/test/puppeteer/test/assets/consolelog.html
new file mode 100644
index 0000000000..4a27803aa9
--- /dev/null
+++ b/remote/test/puppeteer/test/assets/consolelog.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>console.log test</title>
+ </head>
+ <body>
+ <script>
+ function foo() {
+ console.log('yellow')
+ }
+ function bar() {
+ foo();
+ }
+ bar();
+ </script>
+ </body>
+</html>