Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector-protocol / css / css-set-media-text-expected.txt
blobeb7b1b4d2c6a5bf154dec47bdfd8a803a25e4cae
1 ==== Initial style sheet text ====
2 @media screen and (min-width: 700px) and (max-device-height: 200em) {
3     body {
4         padding: 0;
5     }
8  @media all and (orientation: portrait),
9 handheld and (max-width: 700px),
10 (max-resolution: 3dppx) {
11     body {
12         padding: 10px;
13     }
17 Running test: testSimpleEdit
18 ==== Style sheet text ====
19 @media all and (min-height: 20px) {
20     body {
21         padding: 0;
22     }
25  @media all and (orientation: portrait),
26 handheld and (max-width: 700px),
27 (max-resolution: 3dppx) {
28     body {
29         padding: 10px;
30     }
34 Running test: testComplexToSimpleEdit
35 ==== Style sheet text ====
36 @media screen and (min-width: 700px) and (max-device-height: 200em) {
37     body {
38         padding: 0;
39     }
42  @media all {
43     body {
44         padding: 10px;
45     }
49 Running test: testSimpleToComplexEdit
50 ==== Style sheet text ====
51 @media all and (min-height: 20px), (max-width: 10px), handheld and (min-monochrome: 8) {
52     body {
53         padding: 0;
54     }
57  @media all and (orientation: portrait),
58 handheld and (max-width: 700px),
59 (max-resolution: 3dppx) {
60     body {
61         padding: 10px;
62     }
66 Running test: testInvalidParameters
67 Expected protocol error: range.startLine must be a non-negative integer
69 Running test: testInvalidText
70 Expected protocol error: SyntaxError Selector or media text is not valid.
72 Running test: testEditSequentially
73 ==== Style sheet text ====
74 @media screen {
75     body {
76         padding: 0;
77     }
80  @media all and (orientation: portrait),
81 handheld and (max-width: 700px),
82 (max-resolution: 3dppx) {
83     body {
84         padding: 10px;
85     }
88 ==== Style sheet text ====
89 @media all,
90 handheld and (min-height: 20px),
91 (min-width: 100px) and (max-width: 200px) {
92     body {
93         padding: 0;
94     }
97  @media all and (orientation: portrait),
98 handheld and (max-width: 700px),
99 (max-resolution: 3dppx) {
100     body {
101         padding: 10px;
102     }
106 Running test: testSimpleAfterSequentially
107 ==== Style sheet text ====
108 @media all and (min-height: 20px) {
109     body {
110         padding: 0;
111     }
114  @media all and (orientation: portrait),
115 handheld and (max-width: 700px),
116 (max-resolution: 3dppx) {
117     body {
118         padding: 10px;
119     }