| OLD | NEW |
| 1 ==== Initial style sheet text ==== | 1 ==== Initial style sheet text ==== |
| 2 @media screen and (min-width: 700px) and (max-device-height: 200em) { | 2 @media screen and (min-width: 700px) and (max-device-height: 200em) { |
| 3 body { | 3 body { |
| 4 padding: 0; | 4 padding: 0; |
| 5 } | 5 } |
| 6 } | 6 } |
| 7 | 7 |
| 8 @media all and (orientation: portrait), | 8 @media all and (orientation: portrait), |
| 9 handheld and (max-width: 700px), | 9 handheld and (max-width: 700px), |
| 10 (max-resolution: 3dppx) { | 10 (max-resolution: 3dppx) { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 @media all and (orientation: portrait), | 57 @media all and (orientation: portrait), |
| 58 handheld and (max-width: 700px), | 58 handheld and (max-width: 700px), |
| 59 (max-resolution: 3dppx) { | 59 (max-resolution: 3dppx) { |
| 60 body { | 60 body { |
| 61 padding: 10px; | 61 padding: 10px; |
| 62 } | 62 } |
| 63 } | 63 } |
| 64 | 64 |
| 65 | 65 |
| 66 Running test: testInvalidParameters | 66 Running test: testInvalidParameters |
| 67 Expected protocol error: Invalid request (range.startLine: integer value expecte
d) | 67 Expected protocol error: Invalid parameters (range.startLine: integer value expe
cted) |
| 68 | 68 |
| 69 Running test: testInvalidText | 69 Running test: testInvalidText |
| 70 Expected protocol error: SyntaxError Selector or media text is not valid. | 70 Expected protocol error: SyntaxError Selector or media text is not valid. |
| 71 | 71 |
| 72 Running test: testEditSequentially | 72 Running test: testEditSequentially |
| 73 ==== Style sheet text ==== | 73 ==== Style sheet text ==== |
| 74 @media screen { | 74 @media screen { |
| 75 body { | 75 body { |
| 76 padding: 0; | 76 padding: 0; |
| 77 } | 77 } |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 113 |
| 114 @media all and (orientation: portrait), | 114 @media all and (orientation: portrait), |
| 115 handheld and (max-width: 700px), | 115 handheld and (max-width: 700px), |
| 116 (max-resolution: 3dppx) { | 116 (max-resolution: 3dppx) { |
| 117 body { | 117 body { |
| 118 padding: 10px; | 118 padding: 10px; |
| 119 } | 119 } |
| 120 } | 120 } |
| 121 | 121 |
| 122 | 122 |
| OLD | NEW |