blob: 99628e38d3a3eb12660591f73239815c528c3599 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE HTML>
<html>
<head>
<script type="application/javascript">
function crash() {
var target1 = document.getElementById("target1");
var target2 = document.getElementById("target2");
var observer1 = new IntersectionObserver(function (entries) {
console.log(entries);
observer1.disconnect();
observer2.disconnect();
});
var observer2 = new IntersectionObserver(function (entries) {
console.log(entries);
});
observer1.observe(target1);
observer2.observe(target2);
}
</script>
</head>
<body onload="crash()">
<div id="target1" style="background: red; width: 50px; height: 50px"></div>
<div id="target2" style="background: green; width: 50px; height: 50px"></div>
</body>
</html>
|