| OLD | NEW |
| 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 }; |
| OLD | NEW |