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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframes-find-rule.html

Issue 1577723002: Devtools: Add editable keyframes to the styles sidebar pane (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/keyframes-rule.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/keyframes-rule.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698