Sign in
cobalt
/
cobalt
/
c9e19ca560c593f3612acbdcd0ca4da848fb7c3e
/
.
/
third_party
/
web_platform_tests
/
intersection-observer
/
resources
/
same-origin-grand-child-iframe.html
blob: 25db5a29d8a917916d0b2012f8f790ea9178e681 [
file
]
<!DOCTYPE html>
<div
id
=
"target"
></div>
<script>
const
observer
=
new
IntersectionObserver
(
records
=>
{
window
.
top
.
postMessage
(
records
[
0
].
rootBounds
,
"*"
);
},
{});
observer
.
observe
(
target
);
</script>