| Index: Source/devtools/front_end/sdk/CSSStyleModel.js
|
| diff --git a/Source/devtools/front_end/sdk/CSSStyleModel.js b/Source/devtools/front_end/sdk/CSSStyleModel.js
|
| index d1bf067504dcdea229afc57724777e20ec780ed9..309e7c3f4e0a817ea427a802ffb0da42000ba8f3 100644
|
| --- a/Source/devtools/front_end/sdk/CSSStyleModel.js
|
| +++ b/Source/devtools/front_end/sdk/CSSStyleModel.js
|
| @@ -1329,6 +1329,7 @@ WebInspector.CSSProperty.prototype = {
|
| }
|
|
|
| var lastWasSemicolon = true;
|
| + var lastWasMeta = false;
|
| var insideProperty = false;
|
| /**
|
| * @param {string} token
|
| @@ -1361,11 +1362,13 @@ WebInspector.CSSProperty.prototype = {
|
| if (isSemicolon)
|
| insideProperty = false;
|
|
|
| - if (tokenType === "css-tag") {
|
| + if (tokenType === "css-meta" || (tokenType === "css-tag" && !lastWasMeta)) {
|
| result += "\n" + indentation;
|
| insideProperty = true;
|
| }
|
| result += token;
|
| +
|
| + lastWasMeta = tokenType === "css-meta";
|
| }
|
| },
|
|
|
|
|