Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src='../../../resources/testharness.js'></script> | |
| 3 <script src='../../../resources/testharnessreport.js'></script> | |
| 4 <script src='property-suite.js'></script> | |
| 5 | |
| 6 <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.
| |
| 7 | |
| 8 <script> | |
| 9 | |
| 10 var config = { | |
| 11 validKeywords: [ | |
| 12 'normal', | |
| 13 'reverse', | |
| 14 'alternate', | |
| 15 'alternate-reverse', | |
| 16 ], | |
| 17 validObjects: [ | |
| 18 ], | |
| 19 supportsMultiple: true, | |
| 20 invalidObjects: [ | |
| 21 new CSSSimpleLength(4, 'px'), | |
| 22 ] | |
| 23 }; | |
| 24 | |
| 25 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.
| |
| 26 | |
| 27 </script> | |
| 28 | |
| OLD | NEW |