Use standard ICE in Chromoting.
[chromium-blink-merge.git] / android_webview / test / data / iframe_access.html
blob86e0d2362cee2da7ef45a164b90b85f3a71611cd
1 <html>
2 <head>
3 <script>
4 function onload() {
5 try {
6 document.title = document.getElementById("frame").contentWindow.location.href;
7 } catch (e) {
8 document.title = "Exception";
11 </script>
12 </head>
13 <body onload="onload()">
14 <iframe id="frame" src="hello_world.html"></iframe>
15 </body>
16 </html>