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'); |