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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction-expected.txt

Issue 2529043002: [CSS Typed OM] Add a property test generator for testing the inline StylePropertyMap (Closed)
Patch Set: Fix typo 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction-expected.txt
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction-expected.txt b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c1bdb26068a01f59e3dfdba734d5fb3f22081f8b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/animation-direction-expected.txt
@@ -0,0 +1,36 @@
+This is a testharness.js-based test.
+PASS Setting animation-direction to normal
+PASS Setting animation-direction to reverse
+PASS Setting animation-direction to alternate
+PASS Setting animation-direction to alternate-reverse
+PASS Setting animation-direction to initial
+PASS Setting animation-direction to inherit
+PASS Setting animation-direction to unset
+PASS Setting animation-direction to invalid value CSSSimpleLength throws
+PASS Setting animation-direction to invalid value null throws
+PASS Setting animation-direction to invalid value undefined throws
+PASS Setting animation-direction to invalid value true throws
+PASS Setting animation-direction to invalid value false throws
+PASS Setting animation-direction to invalid value 1 throws
+PASS Setting animation-direction to invalid value hello throws
+PASS Setting animation-direction to invalid value [object Object] throws
+PASS Setting animation-direction to invalid value CSSKeywordValue throws
+FAIL Getting animation-direction when it is set to normal assert_true: result instanceof CSSKeywordValue: expected true got false
+FAIL Getting animation-direction when it is set to reverse assert_true: result instanceof CSSKeywordValue: expected true got false
+FAIL Getting animation-direction when it is set to alternate assert_true: result instanceof CSSKeywordValue: expected true got false
+FAIL Getting animation-direction when it is set to alternate-reverse assert_true: result instanceof CSSKeywordValue: expected true got false
+FAIL Getting animation-direction when it is set to initial assert_true: result instanceof CSSKeywordValue: expected true got false
+FAIL Getting animation-direction when it is set to inherit assert_true: result instanceof CSSKeywordValue: expected true got false
+FAIL Getting animation-direction when it is set to unset assert_true: result instanceof CSSKeywordValue: expected true got false
+FAIL getAll for single-valued animation-direction assert_equals: Returned type is incorrect: expected "CSSKeywordValue" but got "CSSStyleValue"
+FAIL getAll for list-valued animation-direction assert_equals: Expected getAll to return an array containing two instances of CSSStyleValue expected 2 but got 1
+PASS Delete animation-direction removes the value form the styleMap
+PASS animation-direction shows up in getProperties
+FAIL Set animation-direction to a sequence assert_equals: expected "normal, normal" but got "normal normal"
+PASS Set animation-direction to a sequence containing an invalid type
+FAIL Appending a CSSKeywordValue to animation-direction assert_equals: expected "normal, normal" but got "normal normal"
+FAIL Append a sequence to animation-direction assert_equals: expected "normal, normal" but got "normal normal"
+PASS Appending an invalid value to animation-direction
+PASS Append a sequence containing an invalid value to animation-direction
+Harness: the test ran to completion.
+

Powered by Google App Engine
This is Rietveld 408576698