Chromium Code Reviews| 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..f0aa1e4903315e2dc051018a232cd1b3fe26e976 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction.html |
| @@ -0,0 +1,28 @@ |
| +<!DOCTYPE html> |
| +<script src='../../../resources/testharness.js'></script> |
| +<script src='../../../resources/testharnessreport.js'></script> |
| +<script src='property-suite.js'></script> |
| + |
| +<div id="testElement"></div> |
|
dstockwell
2016/11/29 06:26:35
The suite should just generate this element.
meade_UTC10
2016/12/01 03:48:20
Done.
|
| + |
| +<script> |
| + |
| +var config = { |
| + validKeywords: [ |
| + 'normal', |
| + 'reverse', |
| + 'alternate', |
| + 'alternate-reverse', |
| + ], |
| + validObjects: [ |
| + ], |
| + supportsMultiple: true, |
| + invalidObjects: [ |
| + new CSSSimpleLength(4, 'px'), |
| + ] |
| +}; |
| + |
| +generatePropertySuite('animation-direction', config, testElement); |
|
dstockwell
2016/11/29 06:26:35
Simpler to just inline to config here.
Calling th
dstockwell
2016/11/29 06:26:35
Simpler to just inline to config here and make the
meade_UTC10
2016/12/01 03:48:20
Done.
|
| + |
| +</script> |
| + |