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

Unified Diff: third_party/WebKit/LayoutTests/animations/animations-csstext.html

Issue 1778743003: Make <custom-ident> not insert quotes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix win_chromium_rel_ng Created 4 years, 9 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
Index: third_party/WebKit/LayoutTests/animations/animations-csstext.html
diff --git a/third_party/WebKit/LayoutTests/animations/animations-csstext.html b/third_party/WebKit/LayoutTests/animations/animations-csstext.html
index 203bbf937f76340892fe87a77af0ac82615087d0..a189c9934da6c6f74d8cb3379c7e32abd6be0b66 100644
--- a/third_party/WebKit/LayoutTests/animations/animations-csstext.html
+++ b/third_party/WebKit/LayoutTests/animations/animations-csstext.html
@@ -6,6 +6,8 @@ test(function(){
var div = document.createElement('div');
div.style.animationName = 'anim';
assert_equals(div.style.cssText, 'animation-name: anim;');
+ div.style.animationName = "\\ ";
+ assert_equals(div.style.cssText, 'animation-name: \\ ;');
div.style.animation = 'hello 2s';
assert_equals(div.style.cssText, 'animation: hello 2s;');
}, 'cssText serializes animation properties sanely');

Powered by Google App Engine
This is Rietveld 408576698