| 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 0a0bc61dba6f71d254042aece0ba95380b5b273f..fa93787bb29a0f22d08310027d41c827ddc8eaf3 100644
|
| --- a/third_party/WebKit/Source/core/dom/IntersectionObserver.idl
|
| +++ b/third_party/WebKit/Source/core/dom/IntersectionObserver.idl
|
| @@ -13,10 +13,10 @@ callback IntersectionObserverCallback = void (sequence<IntersectionObserverEntry
|
| MeasureAs=IntersectionObserver_Constructor,
|
| RuntimeEnabled=IntersectionObserver,
|
| ] interface IntersectionObserver {
|
| - void observe(Element target);
|
| - void unobserve(Element target);
|
| - void disconnect();
|
| - sequence<IntersectionObserverEntry> takeRecords();
|
| + [RaisesException] void observe(Element target);
|
| + [RaisesException] void unobserve(Element target);
|
| + [RaisesException] void disconnect();
|
| + [RaisesException] sequence<IntersectionObserverEntry> takeRecords();
|
| readonly attribute Element? root;
|
| readonly attribute DOMString rootMargin;
|
| readonly attribute FrozenArray<double> thresholds;
|
|
|