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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sass/test-ast-scss-5-expected.txt

Issue 1511073002: DevTools: [SASS] introduce sass module, implement SCSS AST-builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: introduce ASTDocument 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-scss-5-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sass/test-ast-scss-5-expected.txt b/third_party/WebKit/LayoutTests/inspector/sass/test-ast-scss-5-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6d025ca2c56e56421518a63b807115e057af6f56
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sass/test-ast-scss-5-expected.txt
@@ -0,0 +1,48 @@
+Verifies AST of SCSS with missing trailing semicolon after last property.
+
+body {
+ /* padding-top: 5em; */
+ margin: 0 auto
+}
+
+body {
+ color: red;
+ /* margin: 0 auto */
+}
+
+=== AST ===
+rule 0: "variables"
+rule 1: "properties"
+ property 0
+ name: "padding-top"
+ range: {"startLine":1,"startColumn":7,"endLine":1,"endColumn":18}
+ value: " 5em"
+ range: {"startLine":1,"startColumn":19,"endLine":1,"endColumn":23}
+ range: {"startLine":1,"startColumn":4,"endLine":1,"endColumn":27}
+ disabled: true
+ property 1
+ name: "margin"
+ range: {"startLine":2,"startColumn":4,"endLine":2,"endColumn":10}
+ value: " 0 auto
+"
+ range: {"startLine":2,"startColumn":11,"endLine":3,"endColumn":0}
+ range: {"startLine":2,"startColumn":4,"endLine":3,"endColumn":1}
+ disabled: false
+ property 2
+ name: "color"
+ range: {"startLine":6,"startColumn":4,"endLine":6,"endColumn":9}
+ value: " red"
+ range: {"startLine":6,"startColumn":10,"endLine":6,"endColumn":14}
+ range: {"startLine":6,"startColumn":4,"endLine":6,"endColumn":15}
+ disabled: false
+ property 3
+ name: "margin"
+ range: {"startLine":7,"startColumn":7,"endLine":7,"endColumn":13}
+ value: " 0 auto "
+ range: {"startLine":7,"startColumn":14,"endLine":7,"endColumn":22}
+ range: {"startLine":7,"startColumn":4,"endLine":7,"endColumn":24}
+ disabled: true
+rule 2: "mixins"
+======
+Ranges OK.
+

Powered by Google App Engine
This is Rietveld 408576698