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

Unified Diff: third_party/WebKit/Source/core/dom/IntersectionObserver.idl

Issue 1825443002: IntersectionObserver: omit thresholds attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Fix global-interface-listing expectations. Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/dom/IntersectionObserver.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/IntersectionObserver.idl
diff --git a/third_party/WebKit/Source/core/dom/IntersectionObserver.idl b/third_party/WebKit/Source/core/dom/IntersectionObserver.idl
index f5927c6f942d1386c6333103f795b68023c7e214..4c63ae8c43b90e033b0ec3c8edf841ece5c8b993 100644
--- a/third_party/WebKit/Source/core/dom/IntersectionObserver.idl
+++ b/third_party/WebKit/Source/core/dom/IntersectionObserver.idl
@@ -2,11 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// TODO(szager): add link to final spec.
+// 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): Update the doc link when the spec has an official home.
-// https://github.com/slightlyoff/IntersectionObserver
+// 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,
@@ -19,5 +21,4 @@ callback IntersectionObserverCallback = void (sequence<IntersectionObserverEntry
sequence<IntersectionObserverEntry> takeRecords();
readonly attribute Element? root;
readonly attribute DOMString rootMargin;
- readonly attribute double[] thresholds;
};
« no previous file with comments | « third_party/WebKit/Source/core/dom/IntersectionObserver.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698