Index: core/animation/AnimationEffectReadOnly.idl |
diff --git a/core/inspector/InspectorOverlayHost.idl b/core/animation/AnimationEffectReadOnly.idl |
similarity index 83% |
copy from core/inspector/InspectorOverlayHost.idl |
copy to core/animation/AnimationEffectReadOnly.idl |
index 8fc701ba85328a0c52347dad4b26f0eb287aa4ff..06540d1d07e642d57b7598db9c0a91df194d9e44 100644 |
--- a/core/inspector/InspectorOverlayHost.idl |
+++ b/core/animation/AnimationEffectReadOnly.idl |
@@ -28,10 +28,13 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// https://w3c.github.io/web-animations/#the-animationeffectreadonly-interface |
+ |
[ |
+ RuntimeEnabled=WebAnimationsAPI, |
WillBeGarbageCollected, |
- NoInterfaceObject |
-] interface InspectorOverlayHost { |
- void resume(); |
- void stepOver(); |
+ ImplementedAs=AnimationEffect, |
+] interface AnimationEffectReadOnly { |
+ readonly attribute AnimationEffectTiming timing; |
+ readonly attribute ComputedTimingProperties computedTiming; |
}; |