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

Unified 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, 1 month 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 side-by-side diff with in-line comments
Download patch
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>
+

Powered by Google App Engine
This is Rietveld 408576698