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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sass/test-ast-css-2-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 media query.
2
3 @media (min-device-width: 720px) {
4 body {
5 width: 720px;
6 /* padding-top: 5em; */
7 height: 100%;
8 margin: 0 auto;
9 }
10 }
11
12 === AST ===
13 rule 0: "body"
14 property 0
15 name: "width"
16 range: {"startLine":2,"startColumn":8,"endLine":2,"endColumn":13}
17 value: " 720px"
18 range: {"startLine":2,"startColumn":14,"endLine":2,"endColumn":20}
19 range: {"startLine":2,"startColumn":8,"endLine":2,"endColumn":21}
20 disabled: false
21 property 1
22 name: "padding-top"
23 range: {"startLine":3,"startColumn":11,"endLine":3,"endColumn":22}
24 value: " 5em"
25 range: {"startLine":3,"startColumn":23,"endLine":3,"endColumn":27}
26 range: {"startLine":3,"startColumn":8,"endLine":3,"endColumn":31}
27 disabled: true
28 property 2
29 name: "height"
30 range: {"startLine":4,"startColumn":8,"endLine":4,"endColumn":14}
31 value: " 100%"
32 range: {"startLine":4,"startColumn":15,"endLine":4,"endColumn":20}
33 range: {"startLine":4,"startColumn":8,"endLine":4,"endColumn":21}
34 disabled: false
35 property 3
36 name: "margin"
37 range: {"startLine":5,"startColumn":8,"endLine":5,"endColumn":14}
38 value: " 0 auto"
39 range: {"startLine":5,"startColumn":15,"endLine":5,"endColumn":22}
40 range: {"startLine":5,"startColumn":8,"endLine":5,"endColumn":23}
41 disabled: false
42 ======
43 Ranges OK.
44
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698