Index: core/events/PageTransitionEvent.idl |
diff --git a/core/events/PageTransitionEvent.idl b/core/events/PageTransitionEvent.idl |
index 679d51edc5ac1d14055b4c2719b675bb057884a7..7dc109e1512b6a47206f1823fdfd78a9cace51c6 100644 |
--- a/core/events/PageTransitionEvent.idl |
+++ b/core/events/PageTransitionEvent.idl |
@@ -23,9 +23,11 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// https://html.spec.whatwg.org/multipage/browsers.html#the-pagetransitionevent-interface |
+ |
[ |
- EventConstructor, |
+ Constructor(DOMString type, optional PageTransitionEventInit eventInitDict), |
+ // TODO(philipj): Exposed=(Window,Worker) |
] interface PageTransitionEvent : Event { |
- [InitializedByEventConstructor] readonly attribute boolean persisted; |
+ readonly attribute boolean persisted; |
}; |
- |