Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction.html

Issue 2529043002: [CSS Typed OM] Add a property test generator for testing the inline StylePropertyMap (Closed)
Patch Set: Add expectation files Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698