index.html (1002B)
1 <!-- Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ --> 3 <!doctype html> 4 5 <html> 6 <!-- A simple script --> 7 <script src="script.js"></script> 8 9 <!-- A bundle/generated source that contains an updated version of original.js --> 10 <script src="bundle.js"></script> 11 12 <!-- A bundle/generated source that contains original-with-no-update.js as well as content from a newly added another-original.js --> 13 <script src="bundle-with-another-original.js"></script> 14 15 <!-- Another bundle/generated source that contains new-original.js which replaced the content of removed-original.js --> 16 <script src="replaced-bundle.js"></script> 17 <head> 18 <meta charset="utf-8"/> 19 <title>Empty test page 2</title> 20 </head> 21 22 <body> 23 <!-- A simple inline script, that helps to cover breakable lines/columns --> 24 <script> 25 console.log('breakable-line'); 26 // Comment 27 </script> 28 29 <iframe src="iframe.html"></script> 30 </body> 31 32 </html>