| Index: LayoutTests/inspector-protocol/resources/test-page-trigger-animation.html
|
| diff --git a/LayoutTests/inspector-protocol/resources/test-page-trigger-animation.html b/LayoutTests/inspector-protocol/resources/test-page-trigger-animation.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9894ff7a33ab94245221e83a68974a7921d178e3
|
| --- /dev/null
|
| +++ b/LayoutTests/inspector-protocol/resources/test-page-trigger-animation.html
|
| @@ -0,0 +1,14 @@
|
| +<!doctype html>
|
| +<html>
|
| +<head>
|
| +<script>
|
| +function startAnimation()
|
| +{
|
| + var player = node.animate([{ width: "100px" }, { width: "200px" }], 100);
|
| +}
|
| +</script>
|
| +</head>
|
| +<body onload="startAnimation()">
|
| + <div id="node" style="background-color: red; height: 100px; width: 100px"></div>
|
| +</body>
|
| +</html>
|
|
|