| Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6f7ab687ffdba89f8c1293de8626dede6ff9ae08
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE html>
|
| +<script src='../../../resources/testharness.js'></script>
|
| +<script src='../../../resources/testharnessreport.js'></script>
|
| +<script src='property-suite.js'></script>
|
| +
|
| +<script>
|
| +
|
| +runInlineStylePropertyMapTests( {
|
| + property: 'animation-direction',
|
| + validKeywords: [
|
| + 'normal',
|
| + 'reverse',
|
| + 'alternate',
|
| + 'alternate-reverse',
|
| + ],
|
| + validObjects: [],
|
| + supportsMultiple: true,
|
| + invalidObjects: [new CSSSimpleLength(4, 'px')]
|
| +});
|
| +
|
| +</script>
|
| +
|
|
|