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

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

Issue 1998733002: IntersectionObserver: add thresholds attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: test expectation fix Created 4 years, 7 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 f97c507622232a0aefdc6aff368976777045c310..0a0bc61dba6f71d254042aece0ba95380b5b273f 100644
--- a/third_party/WebKit/Source/core/dom/IntersectionObserver.idl
+++ b/third_party/WebKit/Source/core/dom/IntersectionObserver.idl
@@ -7,8 +7,6 @@
callback IntersectionObserverCallback = void (sequence<IntersectionObserverEntry> entries, IntersectionObserver observer);
-// 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,
@@ -21,4 +19,5 @@ callback IntersectionObserverCallback = void (sequence<IntersectionObserverEntry
sequence<IntersectionObserverEntry> takeRecords();
readonly attribute Element? root;
readonly attribute DOMString rootMargin;
+ readonly attribute FrozenArray<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