Chromium Code Reviews

Unified Diff: Source/core/css/CSSGridLineNamesValue.cpp

Issue 1168453002: [CSSGridLayout] Switch from parentheses to brackets for grid line names (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed test and parsing Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/css/CSSGridLineNamesValue.cpp
diff --git a/Source/core/css/CSSGridLineNamesValue.cpp b/Source/core/css/CSSGridLineNamesValue.cpp
index 3d24511f69a3aef4555593583fae122fe8c8c245..c60421f838a8e8c80363d137d1af9a196934124a 100644
--- a/Source/core/css/CSSGridLineNamesValue.cpp
+++ b/Source/core/css/CSSGridLineNamesValue.cpp
@@ -35,7 +35,7 @@ namespace blink {
String CSSGridLineNamesValue::customCSSText() const
{
- return "(" + CSSValueList::customCSSText() + ")";
+ return "[" + CSSValueList::customCSSText() + "]";
}
CSSGridLineNamesValue::CSSGridLineNamesValue()

Powered by Google App Engine