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

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

Issue 2249653002: border-foo WIP Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: V9 Created 4 years, 4 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 fef9b6c3de30d8f11621d663ad93f4ecd1f53935..401f876c95208990ecc9ffc23935c1bf3eb0518c 100644
--- a/third_party/WebKit/LayoutTests/fast/css/cssText-shorthand.html
+++ b/third_party/WebKit/LayoutTests/fast/css/cssText-shorthand.html
@@ -9,9 +9,9 @@ var tests = [
['border: 1px red;', 'border: 1px red;'],
['border: red;', 'border: red;'],
['border-top: 1px; border-right: 1px; border-bottom: 1px; border-left: 1px;',
- 'border-color: initial; border-style: initial; border-width: 1px;'],
- ['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-image: initial;'],
+ 'border-color: currentcolor; border-style: none; border-width: 1px;'],
+ ['border-top: 1px; border-right: 2px; border-bottom: 3px; border-left: 4px;', 'border-color: currentcolor; border-style: none; border-width: 1px 2px 3px 4px;'],
+ ['border: 1px; border-top: 2px;', 'border-color: currentcolor; border-style: none; border-width: 2px 1px 1px; border-image: none;'],
['border: 1px; border-top: 1px !important;',
'border-right: 1px; border-bottom: 1px; border-left: 1px; border-top: 1px !important; border-image: initial;'],

Powered by Google App Engine
This is Rietveld 408576698