scriptTag-disabled.htm 460 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>babel-standalone example - Script tag</title>
  6. </head>
  7. <body>
  8. <pre id="output">This line should not be overwritten!</pre>
  9. <script src="../babel.js"></script>
  10. <script>Babel.disableScriptTags()</script>
  11. <script type="text/babel">
  12. const doStuff = () => {
  13. document.getElementById('output').innerHTML = `I did an evil operation!`;
  14. };
  15. doStuff();
  16. </script>
  17. </body>
  18. </html>