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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/cssText-shorthand.html

Issue 1984163002: Fix up CSSStyleDeclaration::cssText serialization (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@border
Patch Set: Created 4 years, 7 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/fast/css/cssText-shorthand.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/cssText-shorthand.html b/third_party/WebKit/LayoutTests/fast/css/cssText-shorthand.html
index c2191129d078159356b97cca7c9509cda85cf79e..385d9abb86f145d5c4055015bbd566405b8bc790 100644
--- a/third_party/WebKit/LayoutTests/fast/css/cssText-shorthand.html
+++ b/third_party/WebKit/LayoutTests/fast/css/cssText-shorthand.html
@@ -12,7 +12,7 @@ var tests = [
['border-top: 1px; border-right: 2px; border-bottom: 3px; border-left: 4px;', 'border-color: initial; border-style: initial; border-width: 1px 2px 3px 4px;'],
['border: 1px; border-top: 2px;', 'border-color: initial; border-style: initial; border-width: 2px 1px 1px;'],
['border: 1px; border-top: 1px !important;',
- 'border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-width: 1px !important;'],
+ 'border-right: 1px; border-bottom: 1px; border-left: 1px; border-top: 1px !important;'],
['border: 1px; border-top-color: red;', 'border-style: initial; border-top-color: red; border-width: 1px;'],
['border: solid; border-style: dotted', 'border: dotted;'],

Powered by Google App Engine
This is Rietveld 408576698