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

Side by Side 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 unified diff | Download patch
OLDNEW
1 Verifies that formatter adds a semicolon when enabling property. 1 Verifies that formatter adds a semicolon when enabling property.
2 2
3 Formatted 3 Formatted
4 4
5 Running: initFormattedStyle 5 Running: initFormattedStyle
6 6
7 Running: testFormattedDisableLast 7 Running: testFormattedDisableLast
8 raw cssText: 8 raw cssText:
9 { 9 {
10 property1: value1; 10 color: red;
11 /* property2: value2 */ 11 /* margin: 0 */
12 } 12 }
13 13
14 Running: testFormattedInsertEnd 14 Running: testFormattedInsertEnd
15 raw cssText: 15 raw cssText:
16 { 16 {
17 property1: value1; 17 color: red;
18 /* property2: value2 */ 18 /* margin: 0 */
19 endProperty: endValue; 19 endProperty: endValue;
20 } 20 }
21 21
22 Running: testFormattedEnable 22 Running: testFormattedEnable
23 raw cssText: 23 raw cssText:
24 { 24 {
25 property1: value1; 25 color: red;
26 property2: value2; 26 margin: 0;
27 endProperty: endValue; 27 endProperty: endValue;
28 } 28 }
29 29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698