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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sass/test-ast-diff-1-expected.txt

Issue 1504923008: DevTools: [SASS] implement AST differ. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sass-module-2
Patch Set: Created 5 years 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
(Empty)
1 Verifies CSS AST property diff.
2
3 .change-property-name {
4 color: red;
5 }
6
7 .change-property-value::before {
8 margin: 10px 10px;
9 }
10
11 .change-inside-disabled-property {
12 /* width: 100px; */
13 }
14
15 .toggle-property {
16 border: 1px solid black;
17 }
18
19 .add-property {
20 font-family: "Arial";
21 }
22
23 .remove-property {
24 display: inline-flex;
25 position: static;
26 }
27
28 .complex-composite-change {
29 position: absolute;
30 left: 0;
31 right: 0;
32 top: 0;
33 bottom: 0;
34 display: flex;
35 /* align-items: center; */
36 }
37 .change-property-name {
38 background: red;
39 }
40
41 .change-property-value::before {
42 margin: 10px 0 0 10px;
43 }
44
45 .change-inside-disabled-property {
46 /* height: 10px; */
47 }
48
49 .toggle-property {
50 /* border: 1px solid black; */
51 }
52
53 .add-property {
54 font-family: "Arial";
55 font-size: 16px;
56 }
57
58 .remove-property {
59 display: inline-flex;
60 }
61
62 .complex-composite-change {
63 /* position: absolute; */
64 left: 10px;
65 margin: 0;
66 padding: 22px;
67 display: flex;
68 align-items: center;
69 }
70 === Diff ===
71 Changes for rule: .change-property-name
72 [M] color: red
73 Changes for rule: .change-property-value::before
74 margin: [M] 10px 10px
75 Changes for rule: .change-inside-disabled-property
76 [M] width: [M] 100px
77 Changes for rule: .toggle-property
78 [T] border: 1px solid black
79 Changes for rule: .add-property
80 font-family: "Arial"
81 [+] font-size: 16px
82 Changes for rule: .remove-property
83 display: inline-flex
84 [-] position: static
85 Changes for rule: .complex-composite-change
86 [T] position: absolute
87 left: [M] 0
88 [M] right: 0
89 [M] top: [M] 0
90 [-] bottom: 0
91 display: flex
92 [T] align-items: center
93
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698