repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
android_webview
/
test
/
data
/
iframe_access.html
blob
86e0d2362cee2da7ef45a164b90b85f3a71611cd
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"
;
9
}
10
}
11
</script>
12
</head>
13
<body
onload
=
"onload()"
>
14
<iframe
id
=
"frame"
src
=
"hello_world.html"
></iframe>
15
</body>
16
</html>