summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/core/dom/IntersectionObserver.idl
blob: 4c63ae8c43b90e033b0ec3c8edf841ece5c8b993 (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
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// TODO(szager): Update the doc link when the spec has an official home; for now it's:
//   https://github.com/WICG/IntersectionObserver

callback IntersectionObserverCallback = void (sequence<IntersectionObserverEntry> entries, IntersectionObserver observer);

// TODO(szager): Add the thresholds attribute when FrozenArray has been implemented for IDL:
//   readonly attribute FrozenArray<double> thresholds;
[
    CustomConstructor(IntersectionObserverCallback callback, IntersectionObserverInit options),
    Custom=VisitDOMWrapper,
    GarbageCollected,
    RuntimeEnabled=IntersectionObserver,
] interface IntersectionObserver {
    void observe(Element target);
    void unobserve(Element target);
    void disconnect();
    sequence<IntersectionObserverEntry> takeRecords();
    readonly attribute Element? root;
    readonly attribute DOMString rootMargin;
};