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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector/sass/test-ast-diff-1-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sass/test-ast-diff-1-expected.txt b/third_party/WebKit/LayoutTests/inspector/sass/test-ast-diff-1-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..72e8391f2ac5930253069c9c422012e2aeba426e
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sass/test-ast-diff-1-expected.txt
@@ -0,0 +1,93 @@
+Verifies CSS AST property diff.
+
+.change-property-name {
+ color: red;
+}
+
+.change-property-value::before {
+ margin: 10px 10px;
+}
+
+.change-inside-disabled-property {
+ /* width: 100px; */
+}
+
+.toggle-property {
+ border: 1px solid black;
+}
+
+.add-property {
+ font-family: "Arial";
+}
+
+.remove-property {
+ display: inline-flex;
+ position: static;
+}
+
+.complex-composite-change {
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ display: flex;
+ /* align-items: center; */
+}
+.change-property-name {
+ background: red;
+}
+
+.change-property-value::before {
+ margin: 10px 0 0 10px;
+}
+
+.change-inside-disabled-property {
+ /* height: 10px; */
+}
+
+.toggle-property {
+ /* border: 1px solid black; */
+}
+
+.add-property {
+ font-family: "Arial";
+ font-size: 16px;
+}
+
+.remove-property {
+ display: inline-flex;
+}
+
+.complex-composite-change {
+ /* position: absolute; */
+ left: 10px;
+ margin: 0;
+ padding: 22px;
+ display: flex;
+ align-items: center;
+}
+=== Diff ===
+Changes for rule: .change-property-name
+ [M] color: red
+Changes for rule: .change-property-value::before
+ margin: [M] 10px 10px
+Changes for rule: .change-inside-disabled-property
+ [M] width: [M] 100px
+Changes for rule: .toggle-property
+ [T] border: 1px solid black
+Changes for rule: .add-property
+ font-family: "Arial"
+ [+] font-size: 16px
+Changes for rule: .remove-property
+ display: inline-flex
+ [-] position: static
+Changes for rule: .complex-composite-change
+ [T] position: absolute
+ left: [M] 0
+ [M] right: 0
+ [M] top: [M] 0
+ [-] bottom: 0
+ display: flex
+ [T] align-items: center
+

Powered by Google App Engine
This is Rietveld 408576698