https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3b8a635106f0d2986e6592c5a11738d1dad2c7f3 authored by Mozilla Releng Treescript on 14 June 2024, 02:44:31 UTC
no bug - Merge android-l10n translations from mozilla-central r=release a=l10n
Tip revision: 3b8a635
1353529-inner.html
<!DOCTYPE html>
<html>
<body onload="boom()">
<div id="target"></div>
<script>
    function boom() {
        var io = new IntersectionObserver(function () { }, { });
        io.observe(document.getElementById('target'));
    }
</script>
</body>
</html>
back to top