diff options
Diffstat (limited to 'components/script/dom/webidls/TransitionEvent.webidl')
-rw-r--r-- | components/script/dom/webidls/TransitionEvent.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/TransitionEvent.webidl b/components/script/dom/webidls/TransitionEvent.webidl index 05998ececfb..eaa9f3917db 100644 --- a/components/script/dom/webidls/TransitionEvent.webidl +++ b/components/script/dom/webidls/TransitionEvent.webidl @@ -6,9 +6,9 @@ * https://dom.spec.whatwg.org/#event */ -[Constructor(DOMString type, optional TransitionEventInit transitionEventInitDict = {}), - Exposed=Window] +[Exposed=Window] interface TransitionEvent : Event { + [Throws] constructor(DOMString type, optional TransitionEventInit transitionEventInitDict = {}); readonly attribute DOMString propertyName; readonly attribute float elapsedTime; readonly attribute DOMString pseudoElement; |