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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-4/disable-last-property-without-semicolon-expected.txt

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/disable-last-property-without-semicolon-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/disable-last-property-without-semicolon-expected.txt b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/disable-last-property-without-semicolon-expected.txt
index 0fb3375b29c689c0961e8e3ebcbae52ee3743138..75e83b5e3a38acd4473d7897f9ee7390270d5aaa 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/disable-last-property-without-semicolon-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/disable-last-property-without-semicolon-expected.txt
@@ -7,23 +7,23 @@ Running: initFormattedStyle
Running: testFormattedDisableLast
raw cssText:
{
- property1: value1;
- /* property2: value2 */
+ color: red;
+ /* margin: 0 */
}
Running: testFormattedInsertEnd
raw cssText:
{
- property1: value1;
- /* property2: value2 */
+ color: red;
+ /* margin: 0 */
endProperty: endValue;
}
Running: testFormattedEnable
raw cssText:
{
- property1: value1;
- property2: value2;
+ color: red;
+ margin: 0;
endProperty: endValue;
}

Powered by Google App Engine
This is Rietveld 408576698