summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/PageTransitionEvent.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/PageTransitionEvent.idl')
-rw-r--r--Source/WebCore/dom/PageTransitionEvent.idl7
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/WebCore/dom/PageTransitionEvent.idl b/Source/WebCore/dom/PageTransitionEvent.idl
index c8cea7f6f..7f0491edd 100644
--- a/Source/WebCore/dom/PageTransitionEvent.idl
+++ b/Source/WebCore/dom/PageTransitionEvent.idl
@@ -24,8 +24,11 @@
*/
[
- ConstructorTemplate=Event
+ Constructor(DOMString type, optional PageTransitionEventInit eventInitDict),
] interface PageTransitionEvent : Event {
- [InitializedByEventConstructor] readonly attribute boolean persisted;
+ readonly attribute boolean persisted;
};
+dictionary PageTransitionEventInit : EventInit {
+ boolean persisted = false;
+};