OLD | NEW |
1 Verify that mapping is not valid for misaligned sources. | 1 Verify that mapping is not valid for misaligned sources. |
2 | 2 |
3 INITIAL MODELS | 3 INITIAL MODELS |
4 ===== test-edit-toggle-property.css ===== | 4 ===== test-edit-toggle-property.css ===== |
5 .box1.{ | 5 .box1.{ |
6 /*color:.red;*/ | 6 /*color:.red;*/ |
7 ..margin:.10px;.} | 7 ..margin:.10px;.} |
8 | 8 |
9 .box2.{ | 9 .box2.{ |
10 /*color:.red;*/ | 10 /*color:.red;*/ |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 | 68 |
69 .box3.{ | 69 .box3.{ |
70 color:.red; | 70 color:.red; |
71 ..margin:.10px;.} | 71 ..margin:.10px;.} |
72 | 72 |
73 /*#.sourceMappingURL=test-edit-toggle-property.css.map.*/ | 73 /*#.sourceMappingURL=test-edit-toggle-property.css.map.*/ |
74 | 74 |
75 ===== test-edit-toggle-property.scss ===== | 75 ===== test-edit-toggle-property.scss ===== |
76 @for.$i.from.1.through.3.{ | 76 @for.$i.from.1.through.3.{ |
77 .....box#{$i}.{ | 77 .....box#{$i}.{ |
78 ........color:.red;. | 78 ........color:.red; |
79 ........margin:.10px; | 79 ........margin:.10px; |
80 ....} | 80 ....} |
81 } | 81 } |
82 | 82 |
83 | 83 |
84 -------------------- TEST: testDisableMultipleProperties --------------------- | 84 -------------------- TEST: testDisableMultipleProperties --------------------- |
85 | 85 |
86 Edits: | 86 Edits: |
87 {2, 2, 2, 15} 'margin: 10px;' => '/* margin: 10px; */' | 87 {2, 2, 2, 15} 'margin: 10px;' => '/* margin: 10px; */' |
88 {10, 2, 10, 15} 'margin: 10px;' => '/* margin: 10px; */' | 88 {10, 2, 10, 15} 'margin: 10px;' => '/* margin: 10px; */' |
(...skipping 14 matching lines...) Expand all Loading... |
103 | 103 |
104 ===== test-edit-toggle-property.scss ===== | 104 ===== test-edit-toggle-property.scss ===== |
105 @for.$i.from.1.through.3.{ | 105 @for.$i.from.1.through.3.{ |
106 .....box#{$i}.{ | 106 .....box#{$i}.{ |
107 ......../*.color:.red;.*/ | 107 ......../*.color:.red;.*/ |
108 ......../*.margin:.10px;.*/ | 108 ......../*.margin:.10px;.*/ |
109 ....} | 109 ....} |
110 } | 110 } |
111 | 111 |
112 | 112 |
OLD | NEW |