1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16

android_webview / test / data / iframe_access.html [blame]

<html>
  <head>
    <script>
      function onload() {
        try {
          document.title = document.getElementById("frame").contentWindow.location.href;
        } catch (e) {
          document.title = "Exception";
        }
      }
    </script>
  </head>
  <body onload="onload()">
    <iframe id="frame" src="hello_world.html"></iframe>
  </body>
</html>