Index: core/events/TransitionEventInit.idl |
diff --git a/core/events/TransitionEventInit.idl b/core/events/TransitionEventInit.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8a0f8eae4f3ac1a1879f68ada89b5ff4883ac129 |
--- /dev/null |
+++ b/core/events/TransitionEventInit.idl |
@@ -0,0 +1,11 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// http://dev.w3.org/csswg/css-transitions/#transition-events |
+ |
+dictionary TransitionEventInit : EventInit { |
+ DOMString propertyName = ""; |
+ double elapsedTime = 0.0; |
+ DOMString pseudoElement = ""; |
+}; |