Sign in
webkit
/
WebKit
/
ff4cb3c2323f3937e96e08f4f6fbe6c7755f9da5
/
.
/
LayoutTests
/
intersection-observer
/
resources
/
no-document-leak-frame.html
blob: 332baffaa13ae1c2fe659e3b2dfb4344dce9866f [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<div
id
=
"target"
></div>
<script>
var
target
=
document
.
getElementById
(
"target"
);
var
observer
=
new
IntersectionObserver
(
function
()
{
});
observer
.
observe
(
target
);
</script>