test-console-iframes.html (363B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <script> 6 /* eslint-disable */ 7 console.log("main file"); 8 </script> 9 </head> 10 <body> 11 <h1>iframe console test</h1> 12 <iframe src="test-iframe1.html"></iframe> 13 <iframe src="test-iframe2.html"></iframe> 14 <iframe src="test-iframe3.html"></iframe> 15 </body> 16 </html>