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

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

Issue 1515733002: DevTools: [SASS] implement CSS AST-builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sass-module
Patch Set: rebaseline test 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 AST of CSS with missing trailing semicolon after last property.
2
3 body {
4 /* padding-top: 5em; */
5 margin: 0 auto
6 }
7
8 body {
9 color: red;
10 /* margin: 0 auto */
11 }
12
13 === AST ===
14 rule 0: "body"
15 property 0
16 name: "padding-top"
17 range: {"startLine":1,"startColumn":7,"endLine":1,"endColumn":18}
18 value: " 5em"
19 range: {"startLine":1,"startColumn":19,"endLine":1,"endColumn":23}
20 range: {"startLine":1,"startColumn":4,"endLine":1,"endColumn":27}
21 disabled: true
22 property 1
23 name: "margin"
24 range: {"startLine":2,"startColumn":4,"endLine":2,"endColumn":10}
25 value: " 0 auto
26 "
27 range: {"startLine":2,"startColumn":11,"endLine":3,"endColumn":0}
28 range: {"startLine":2,"startColumn":4,"endLine":3,"endColumn":0}
29 disabled: false
30 rule 1: "body"
31 property 0
32 name: "color"
33 range: {"startLine":6,"startColumn":4,"endLine":6,"endColumn":9}
34 value: " red"
35 range: {"startLine":6,"startColumn":10,"endLine":6,"endColumn":14}
36 range: {"startLine":6,"startColumn":4,"endLine":6,"endColumn":15}
37 disabled: false
38 property 1
39 name: "margin"
40 range: {"startLine":7,"startColumn":7,"endLine":7,"endColumn":13}
41 value: " 0 auto "
42 range: {"startLine":7,"startColumn":14,"endLine":7,"endColumn":22}
43 range: {"startLine":7,"startColumn":4,"endLine":7,"endColumn":24}
44 disabled: true
45 ======
46 Ranges OK.
47
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698