| Index: third_party/WebKit/LayoutTests/animations/keyframes-find-rule.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/keyframes-find-rule.html b/third_party/WebKit/LayoutTests/animations/keyframes-find-rule.html
|
| index 433e2be693b5cf76dad45259604f771b1e20da4e..41ba584c6741475692a1ef3f7e32c7fa9d7a1d2a 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/keyframes-find-rule.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/keyframes-find-rule.html
|
| @@ -17,8 +17,8 @@
|
| assert_equals(rules[i].findRule('0%').cssText, '0% { right: 0px; }');
|
| assert_equals(rules[i].findRule(' 0% ').cssText, '0% { right: 0px; }');
|
| assert_equals(rules[i].findRule('from').cssText, '0% { right: 0px; }');
|
| - assert_equals(rules[i].findRule(' FROM , 50% , 100% ').cssText, '0%,50%,100% { left: 100px; }');
|
| - assert_equals(rules[i].findRule(' 0% , 50%, to ').cssText, '0%,50%,100% { left: 100px; }');
|
| + assert_equals(rules[i].findRule(' FROM , 50% , 100% ').cssText, '0%, 50%, 100% { left: 100px; }');
|
| + assert_equals(rules[i].findRule(' 0% , 50%, to ').cssText, '0%, 50%, 100% { left: 100px; }');
|
| assert_equals(rules[i].findRule('100%').cssText, '100% { right: 100px; }');
|
| assert_equals(rules[i].findRule('to').cssText, '100% { right: 100px; }');
|
| assert_equals(rules[i].findRule('1%'), null);
|
|
|