You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ticket2095.html 535B

12345678910111213141516171819202122232425
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function openPopup() {
  5. // possible workaround if IEmbedded was not modified to add name
  6. // window.name = "foo";
  7. var popup = window.open('ticket2095_popup.html','mypopup');
  8. popup._parentName = this.name;
  9. }
  10. </script>
  11. </head>
  12. <body>
  13. <p>
  14. This is file is part of test case for #2095. Embedded.TYPE_BROWSER like iframes
  15. wants to have name, so popups opened by them may submit forms into them.
  16. </p>
  17. <a href="#" onclick="openPopup();">Open popup, will hit debuggger;</a>
  18. </body>
  19. </html>