Chromium Code Reviews| 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 // TODO(szager): |thresholds| is sequence<double> in the spec. | |
|
szager1
2016/10/01 00:03:30
I don't think this needs a TODO here, because ther
foolip
2016/10/01 15:23:20
Will drop TODO.
| |
| 20 // https://github.com/WICG/IntersectionObserver/issues/114 | |
| 21 readonly attribute FrozenArray<double> thresholds; | |
| 16 [RaisesException] void observe(Element target); | 22 [RaisesException] void observe(Element target); |
| 17 [RaisesException] void unobserve(Element target); | 23 [RaisesException] void unobserve(Element target); |
| 18 [RaisesException] void disconnect(); | 24 [RaisesException] void disconnect(); |
| 19 [RaisesException] sequence<IntersectionObserverEntry> takeRecords(); | 25 [RaisesException] sequence<IntersectionObserverEntry> takeRecords(); |
| 20 readonly attribute Element? root; | |
| 21 readonly attribute DOMString rootMargin; | |
| 22 readonly attribute FrozenArray<double> thresholds; | |
| 23 }; | 26 }; |
| OLD | NEW |