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