Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ use-cases. Per-{{observe()}} options could be provided in the future if V2
introduces a need for it.

<pre class="idl">
[Constructor(IntersectionObserverCallback callback, optional IntersectionObserverInit options),
[Constructor(IntersectionObserverCallback callback, optional IntersectionObserverInit options = {}),
Exposed=Window]
interface IntersectionObserver {
readonly attribute Element? root;
Expand Down Expand Up @@ -365,7 +365,8 @@ or failure:
The IntersectionObserverEntry interface</h3>

<pre class="idl">
[Constructor(IntersectionObserverEntryInit intersectionObserverEntryInit)]
[Constructor(IntersectionObserverEntryInit intersectionObserverEntryInit),
Exposed=Window]
interface IntersectionObserverEntry {
readonly attribute DOMHighResTimeStamp time;
readonly attribute DOMRectReadOnly? rootBounds;
Expand Down