access_checker.html 861 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <!--
  3. This file checks whether the current browser can access properties from same
  4. domain iframes. This is currently a problem on the matrix brower ie6 and xp.
  5. For some reason it can't access same domain iframes.
  6. TODO(user): Figure out why it can't.
  7. -->
  8. <html>
  9. <!--
  10. Copyright 2011 The Closure Library Authors. All Rights Reserved.
  11. Use of this source code is governed by the Apache License, Version 2.0.
  12. See the COPYING file for details.
  13. -->
  14. <head>
  15. <title>The access checking iframe</title>
  16. </head>
  17. <body>
  18. <script type="text/javascript">
  19. try {
  20. var sameDomainIframeHref = parent.frames['nonexistant'].location.href;
  21. parent.sameDomainIframeAccessComplete(true);
  22. } catch (e) {
  23. parent.sameDomainIframeAccessComplete(false);
  24. }
  25. </script>
  26. </body>
  27. </html>