| Index: third_party/WebKit/Source/core/dom/IntersectionObserverInit.idl
|
| diff --git a/third_party/WebKit/Source/core/dom/IntersectionObserverInit.idl b/third_party/WebKit/Source/core/dom/IntersectionObserverInit.idl
|
| index f333646a8b123c95ac977fca1077513d04219843..130e0ca5ffd047c56daae8dce7d81c7b708355a2 100644
|
| --- a/third_party/WebKit/Source/core/dom/IntersectionObserverInit.idl
|
| +++ b/third_party/WebKit/Source/core/dom/IntersectionObserverInit.idl
|
| @@ -2,12 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -// TODO(szager): link to final spec
|
| +// https://wicg.github.io/IntersectionObserver/#intersection-observer-init
|
|
|
| [
|
| RuntimeEnabled=IntersectionObserver
|
| ] dictionary IntersectionObserverInit {
|
| - Element? root;
|
| - DOMString rootMargin;
|
| - (double or double[]) threshold = 0;
|
| + Element? root = null;
|
| + DOMString rootMargin = "0px";
|
| + (double or sequence<double>) threshold = 0;
|
| };
|
|
|