Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector-protocol / css / css-set-rule-selector-expected.txt
blob6b7fa90ff9f6cde422d46f05cf0a8aaa78d58c07
1 ==== Initial style sheet text ====
2 * {
3     box-sizing: border-box;
6 html, body, div, a {
7     /* resetting some properties */
8     padding: 0;
9     margin: 0;
10     border: 0;
11     display: flex; /* flex FTW! */
14 p:first-letter { font-size: 200%; } div,
15 body {
16     position: relative;
21 Running test: testEditSimpleSelector
22 ==== Style sheet text ====
23 .EDITED-SELECTOR {
24     box-sizing: border-box;
27 html, body, div, a {
28     /* resetting some properties */
29     padding: 0;
30     margin: 0;
31     border: 0;
32     display: flex; /* flex FTW! */
35 p:first-letter { font-size: 200%; } div,
36 body {
37     position: relative;
42 Running test: testEditCopmlexSelector
43 ==== Style sheet text ====
44 * {
45     box-sizing: border-box;
48 .EDITED-SELECTOR:first-line {
49     /* resetting some properties */
50     padding: 0;
51     margin: 0;
52     border: 0;
53     display: flex; /* flex FTW! */
56 p:first-letter { font-size: 200%; } div,
57 body {
58     position: relative;
63 Running test: testEditSequentially
64 ==== Style sheet text ====
65 * {
66     box-sizing: border-box;
69 html, body, div, a {
70     /* resetting some properties */
71     padding: 0;
72     margin: 0;
73     border: 0;
74     display: flex; /* flex FTW! */
77 .EDITED { font-size: 200%; } div,
78 body {
79     position: relative;
83 ==== Style sheet text ====
84 * {
85     box-sizing: border-box;
88 html, body, div, a {
89     /* resetting some properties */
90     padding: 0;
91     margin: 0;
92     border: 0;
93     display: flex; /* flex FTW! */
96 .EDITED { font-size: 200%; } .EDITED-2 {
97     position: relative;
102 Running test: testInvalidSelectorText
103 Expected protocol error: SyntaxError Selector or media text is not valid.
105 Running test: testEmptySelector
106 Expected protocol error: SyntaxError Selector or media text is not valid.
108 Running test: testSelectorTextWithUnclosedComment
109 Expected protocol error: SyntaxError Selector or media text is not valid.
111 Running test: testEditSubSelector
112 Expected protocol error: NotFoundError Source range didn't match existing source range
114 Running test: testInvalidParameters
115 Expected protocol error: range.startLine must be a non-negative integer
117 Running test: testNegativeRangeParameters
118 Expected protocol error: range.startLine must be a non-negative integer
120 Running test: testStartLineOutOfBounds
121 Expected protocol error: Specified range is out of bounds
123 Running test: testEndLineOutOfBounds
124 Expected protocol error: Specified range is out of bounds
126 Running test: testStartColumnBeyondLastLineCharacter
127 Expected protocol error: Specified range is out of bounds
129 Running test: testEndColumnBeyondLastLineCharacter
130 Expected protocol error: Specified range is out of bounds
132 Running test: testInsertBeyondLastCharacterOfLastLine
133 Expected protocol error: Specified range is out of bounds
135 Running test: testReversedRange
136 Expected protocol error: Range start must not succeed its end