| Index: LayoutTests/webexposed/element-animate.html
|
| diff --git a/LayoutTests/webexposed/element-animate.html b/LayoutTests/webexposed/element-animate.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..da8f26ab56d0637f82abee8572729acf26bce310
|
| --- /dev/null
|
| +++ b/LayoutTests/webexposed/element-animate.html
|
| @@ -0,0 +1,11 @@
|
| +<!DOCTYPE html>
|
| +<script src="../resources/js-test.js"></script>
|
| +<script>
|
| +description("Check that Element.animate() is not available without experimental web platform features enabled. " +
|
| + "Expected to fail in LayoutTests/webexposed and pass in LayoutTests/virtual/stable/webexposed.");
|
| +
|
| +if ('animate' in Element.prototype)
|
| + testFailed("Element.animate() is exposed.");
|
| +else
|
| + testPassed("Element.animate() is not exposed.")
|
| +</script>
|
|
|