Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(854)

Side by Side Diff: third_party/WebKit/Source/core/dom/IntersectionObserver.idl

Issue 2408083003: Drop [ExperimentalCallbackFunction] (Closed)
Patch Set: Update tests and expectations Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // https://wicg.github.io/IntersectionObserver/#intersection-observer-callback 5 // https://wicg.github.io/IntersectionObserver/#intersection-observer-callback
6 6
7 callback IntersectionObserverCallback = void (sequence<IntersectionObserverEntry > entries, IntersectionObserver observer); 7 [Custom] callback IntersectionObserverCallback = void (sequence<IntersectionObse rverEntry> entries, IntersectionObserver observer);
8 8
9 // https://wicg.github.io/IntersectionObserver/#intersection-observer-interface 9 // https://wicg.github.io/IntersectionObserver/#intersection-observer-interface
10 10
11 [ 11 [
12 CustomConstructor(IntersectionObserverCallback callback, optional Intersecti onObserverInit options), 12 CustomConstructor(IntersectionObserverCallback callback, optional Intersecti onObserverInit options),
13 Custom=VisitDOMWrapper, 13 Custom=VisitDOMWrapper,
14 MeasureAs=IntersectionObserver_Constructor, 14 MeasureAs=IntersectionObserver_Constructor,
15 RuntimeEnabled=IntersectionObserver, 15 RuntimeEnabled=IntersectionObserver,
16 ] interface IntersectionObserver { 16 ] interface IntersectionObserver {
17 readonly attribute Element? root; 17 readonly attribute Element? root;
18 readonly attribute DOMString rootMargin; 18 readonly attribute DOMString rootMargin;
19 // https://github.com/WICG/IntersectionObserver/issues/114 19 // https://github.com/WICG/IntersectionObserver/issues/114
20 readonly attribute FrozenArray<double> thresholds; 20 readonly attribute FrozenArray<double> thresholds;
21 [RaisesException] void observe(Element target); 21 [RaisesException] void observe(Element target);
22 [RaisesException] void unobserve(Element target); 22 [RaisesException] void unobserve(Element target);
23 [RaisesException] void disconnect(); 23 [RaisesException] void disconnect();
24 [RaisesException] sequence<IntersectionObserverEntry> takeRecords(); 24 [RaisesException] sequence<IntersectionObserverEntry> takeRecords();
25 }; 25 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.idl ('k') | third_party/WebKit/Source/core/timing/PerformanceObserver.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698