| 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 // TODO(szager): Update the doc link when the spec has an official home; for now
it's: | 5 // https://wicg.github.io/IntersectionObserver/#intersection-observer-callback |
| 6 // https://github.com/WICG/IntersectionObserver | |
| 7 | 6 |
| 8 callback IntersectionObserverCallback = void (sequence<IntersectionObserverEntry
> entries, IntersectionObserver observer); | 7 callback IntersectionObserverCallback = void (sequence<IntersectionObserverEntry
> entries, IntersectionObserver observer); |
| 9 | 8 |
| 9 // https://wicg.github.io/IntersectionObserver/#intersection-observer-interface |
| 10 |
| 10 [ | 11 [ |
| 11 CustomConstructor(IntersectionObserverCallback callback, IntersectionObserve
rInit options), | 12 CustomConstructor(IntersectionObserverCallback callback, optional Intersecti
onObserverInit options), |
| 12 Custom=VisitDOMWrapper, | 13 Custom=VisitDOMWrapper, |
| 13 MeasureAs=IntersectionObserver_Constructor, | 14 MeasureAs=IntersectionObserver_Constructor, |
| 14 RuntimeEnabled=IntersectionObserver, | 15 RuntimeEnabled=IntersectionObserver, |
| 15 ] interface IntersectionObserver { | 16 ] interface IntersectionObserver { |
| 17 readonly attribute Element? root; |
| 18 readonly attribute DOMString rootMargin; |
| 19 // https://github.com/WICG/IntersectionObserver/issues/114 |
| 20 readonly attribute FrozenArray<double> thresholds; |
| 16 [RaisesException] void observe(Element target); | 21 [RaisesException] void observe(Element target); |
| 17 [RaisesException] void unobserve(Element target); | 22 [RaisesException] void unobserve(Element target); |
| 18 [RaisesException] void disconnect(); | 23 [RaisesException] void disconnect(); |
| 19 [RaisesException] sequence<IntersectionObserverEntry> takeRecords(); | 24 [RaisesException] sequence<IntersectionObserverEntry> takeRecords(); |
| 20 readonly attribute Element? root; | |
| 21 readonly attribute DOMString rootMargin; | |
| 22 readonly attribute FrozenArray<double> thresholds; | |
| 23 }; | 25 }; |
| OLD | NEW |