file_exnstack.html 383 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script type="application/javascript">
  5. window.doThrow = function(other) {
  6. if (other)
  7. throwAsOuter(other);
  8. else
  9. throwAsInner();
  10. }
  11. function throwAsInner() {
  12. throw Error('look at me go!');
  13. }
  14. function throwAsOuter(other) {
  15. other.doThrow(null);
  16. }
  17. </script>
  18. </head>
  19. <body>
  20. </body>
  21. </html>