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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-formatting.html

Issue 1534323003: DevTools: [CSS] do not treat random css comments as disabled properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaseline Created 4 years, 11 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/inspector/elements/styles-4/styles-formatting.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-formatting.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-formatting.html
index ae3e563b2fc285b116b6b7cc785d15229276c54a..3e0e4bcb17214bded65932d047ac34518d7707c7 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-formatting.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-formatting.html
@@ -264,12 +264,12 @@ function test()
#formatted {
/* leading comment */
- property1: value1; /* comment1 */
- property2: value2;/* comment2 */
- property3: value3
+ color: red; /* comment1 */
+ margin: 0;/* comment2 */ /* like: property */
+ padding: 0
}
-#unformatted {/*leading comment*/property1:value1;property2:value2;property3:value3;}
+#unformatted {/*leading comment*/color:red;margin:0;padding:0;}
</style>
</head>

Powered by Google App Engine
This is Rietveld 408576698