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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/KeyframeEffectReadOnly/spacing-expected.txt

Issue 2697453005: Import wpt@758b3b4cfa805067f36121333ba031e583d3a62c (Closed)
Patch Set: Add -expected.txt files. Created 3 years, 10 months 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
1 This is a testharness.js-based test. 1 This is a testharness.js-based test.
2 FAIL Test throwing TypeError if using empty string assert_throws: function "func tion () { 2 FAIL Test throwing TypeError if using empty string assert_throws: function "func tion () {
3 createDiv(t).animate(null, { spacing: '' }); 3 createDiv(t).animate(null, { spacing: '' });
4 }" did not throw 4 }" did not throw
5 FAIL Test throwing TypeError if not using the correct keyword assert_throws: fun ction "function () { 5 FAIL Test throwing TypeError if not using the correct keyword assert_throws: fun ction "function () {
6 createDiv(t).animate(null, { spacing: 'dist' }); 6 createDiv(t).animate(null, { spacing: 'dist' });
7 }" did not throw 7 }" did not throw
8 FAIL Test throwing TypeError if adding leading spaces assert_throws: function "f unction () { 8 FAIL Test throwing TypeError if adding leading spaces assert_throws: function "f unction () {
9 createDiv(t).animate(null, { spacing: ' paced(margin-left)' }); 9 createDiv(t).animate(null, { spacing: ' paced(margin-left)' });
10 }" did not throw 10 }" did not throw
11 FAIL Test throwing TypeError if adding trailing spaces assert_throws: function " function () { 11 FAIL Test throwing TypeError if adding trailing spaces assert_throws: function " function () {
12 createDiv(t).animate(null, { spacing: 'paced(margin-left) ' }); 12 createDiv(t).animate(null, { spacing: 'paced(margin-left) ' });
13 }" did not throw 13 }" did not throw
14 FAIL Test throwing TypeError if adding leading spaces before the paced property assert_throws: function "function () { 14 FAIL Test throwing TypeError if adding leading spaces before the paced property assert_throws: function "function () {
15 createDiv(t).animate(null, { spacing: 'paced( margin-left)' }); 15 createDiv(t).animate(null, { spacing: 'paced( margin-left)' });
16 }" did not throw 16 }" did not throw
17 FAIL Test throwing TypeError if adding trailing spaces after the paced property assert_throws: function "function () { 17 FAIL Test throwing TypeError if adding trailing spaces after the paced property assert_throws: function "function () {
18 createDiv(t).animate(null, { spacing: 'paced(margin-left )' }); 18 createDiv(t).animate(null, { spacing: 'paced(margin-left )' });
19 }" did not throw 19 }" did not throw
20 FAIL Test throwing TypeError if these is no paced property assert_throws: functi on "function () { 20 FAIL Test throwing TypeError if these is no paced property assert_throws: functi on "function () {
21 createDiv(t).animate(null, { spacing: 'paced()' }); 21 createDiv(t).animate(null, { spacing: 'paced()' });
22 }" did not throw 22 }" did not throw
23 FAIL Test throwing TypeError if using a non-ident started string assert_throws: function "function () { 23 FAIL Test throwing TypeError if using a non-ident started string with a period a ssert_throws: function "function () {
24 createDiv(t).animate(null, { spacing: 'paced(.margin)' }); 24 createDiv(t).animate(null, { spacing: 'paced(.margin)' });
25 }" did not throw 25 }" did not throw
26 FAIL Test throwing TypeError if using a non-ident started string assert_throws: function "function () { 26 FAIL Test throwing TypeError if using a non-ident started string with a number a ssert_throws: function "function () {
27 createDiv(t).animate(null, { spacing: 'paced(1margin)' }); 27 createDiv(t).animate(null, { spacing: 'paced(1margin)' });
28 }" did not throw 28 }" did not throw
29 FAIL Test throwing TypeError if using a non-ident started string with an invalid escape assert_throws: function "function () { 29 FAIL Test throwing TypeError if using a non-ident started string with an invalid escape assert_throws: function "function () {
30 createDiv(t).animate(null, { spacing: 'paced(\\)' }); 30 createDiv(t).animate(null, { spacing: 'paced(\\)' });
31 }" did not throw 31 }" did not throw
32 FAIL Test throwing TypeError if using a non-ident started string with an invalid escape (FF) assert_throws: function "function () { 32 FAIL Test throwing TypeError if using a non-ident started string with an invalid escape (FF) assert_throws: function "function () {
33 createDiv(t).animate(null, { spacing: 'paced(\\\fmargin)' }); 33 createDiv(t).animate(null, { spacing: 'paced(\\\fmargin)' });
34 }" did not throw 34 }" did not throw
35 FAIL Test throwing TypeError if using a non-ident started string with an invalid escape (CR) assert_throws: function "function () { 35 FAIL Test throwing TypeError if using a non-ident started string with an invalid escape (CR) assert_throws: function "function () {
36 createDiv(t).animate(null, { spacing: 'paced(\\\rmargin)' }); 36 createDiv(t).animate(null, { spacing: 'paced(\\\rmargin)' });
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 FAIL Test falling back to distribute spacing if using a unrecognized property wh ich starts with a minus and a low line assert_equals: spacing mode expected (str ing) "distribute" but got (undefined) undefined 75 FAIL Test falling back to distribute spacing if using a unrecognized property wh ich starts with a minus and a low line assert_equals: spacing mode expected (str ing) "distribute" but got (undefined) undefined
76 FAIL Test falling back to distribute spacing if using a unrecognized property wh ich starts with a minus and a valid escape assert_equals: spacing mode expected (string) "distribute" but got (undefined) undefined 76 FAIL Test falling back to distribute spacing if using a unrecognized property wh ich starts with a minus and a valid escape assert_equals: spacing mode expected (string) "distribute" but got (undefined) undefined
77 FAIL Test falling back to distribute spacing if using CSS variables assert_equal s: spacing mode expected (string) "distribute" but got (undefined) undefined 77 FAIL Test falling back to distribute spacing if using CSS variables assert_equal s: spacing mode expected (string) "distribute" but got (undefined) undefined
78 FAIL Test falling back to distribute spacing if using a non-animatable shorthand property assert_equals: spacing mode expected (string) "distribute" but got (un defined) undefined 78 FAIL Test falling back to distribute spacing if using a non-animatable shorthand property assert_equals: spacing mode expected (string) "distribute" but got (un defined) undefined
79 FAIL Test falling back to distribute spacing if using a non-animatable property assert_equals: spacing mode expected (string) "distribute" but got (undefined) u ndefined 79 FAIL Test falling back to distribute spacing if using a non-animatable property assert_equals: spacing mode expected (string) "distribute" but got (undefined) u ndefined
80 FAIL Test default value of spacing assert_equals: spacing mode expected (string) "distribute" but got (undefined) undefined 80 FAIL Test default value of spacing assert_equals: spacing mode expected (string) "distribute" but got (undefined) undefined
81 FAIL Test spacing value if setting distribute assert_equals: spacing mode expect ed (string) "distribute" but got (undefined) undefined 81 FAIL Test spacing value if setting distribute assert_equals: spacing mode expect ed (string) "distribute" but got (undefined) undefined
82 FAIL Test spacing value if setting paced assert_equals: spacing mode expected (s tring) "paced(margin-left)" but got (undefined) undefined 82 FAIL Test spacing value if setting paced assert_equals: spacing mode expected (s tring) "paced(margin-left)" but got (undefined) undefined
83 Harness: the test ran to completion. 83 Harness: the test ran to completion.
84 84
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698