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

Unified Diff: LayoutTests/inspector-protocol/css/css-set-media-text-expected.txt

Issue 1179323003: DevTools: do not use range indices outside of InspectorStyleSheet. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments addressed Created 5 years, 6 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/inspector-protocol/css/css-set-rule-selector-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector-protocol/css/css-set-media-text-expected.txt
diff --git a/LayoutTests/inspector-protocol/css/css-set-media-text-expected.txt b/LayoutTests/inspector-protocol/css/css-set-media-text-expected.txt
index bfb51e5aac4121ad7e99f53ddead19872efc28cd..eb7b1b4d2c6a5bf154dec47bdfd8a803a25e4cae 100644
--- a/LayoutTests/inspector-protocol/css/css-set-media-text-expected.txt
+++ b/LayoutTests/inspector-protocol/css/css-set-media-text-expected.txt
@@ -33,7 +33,7 @@ handheld and (max-width: 700px),
Running test: testComplexToSimpleEdit
==== Style sheet text ====
-@media screen and (max-device-height: 200em) and (min-width: 700px) {
+@media screen and (min-width: 700px) and (max-device-height: 200em) {
body {
padding: 0;
}
@@ -54,7 +54,9 @@ Running test: testSimpleToComplexEdit
}
}
- @media (orientation: portrait), handheld and (max-width: 700px), (max-resolution: 3dppx) {
+ @media all and (orientation: portrait),
+handheld and (max-width: 700px),
+(max-resolution: 3dppx) {
body {
padding: 10px;
}
@@ -65,7 +67,7 @@ Running test: testInvalidParameters
Expected protocol error: range.startLine must be a non-negative integer
Running test: testInvalidText
-Expected protocol error: SyntaxError Media text is not valid.
+Expected protocol error: SyntaxError Selector or media text is not valid.
Running test: testEditSequentially
==== Style sheet text ====
@@ -75,7 +77,9 @@ Running test: testEditSequentially
}
}
- @media (orientation: portrait), handheld and (max-width: 700px), (max-resolution: 3dppx) {
+ @media all and (orientation: portrait),
+handheld and (max-width: 700px),
+(max-resolution: 3dppx) {
body {
padding: 10px;
}
@@ -90,7 +94,9 @@ handheld and (min-height: 20px),
}
}
- @media (orientation: portrait), handheld and (max-width: 700px), (max-resolution: 3dppx) {
+ @media all and (orientation: portrait),
+handheld and (max-width: 700px),
+(max-resolution: 3dppx) {
body {
padding: 10px;
}
@@ -105,7 +111,9 @@ Running test: testSimpleAfterSequentially
}
}
- @media (orientation: portrait), handheld and (max-width: 700px), (max-resolution: 3dppx) {
+ @media all and (orientation: portrait),
+handheld and (max-width: 700px),
+(max-resolution: 3dppx) {
body {
padding: 10px;
}
« no previous file with comments | « no previous file | LayoutTests/inspector-protocol/css/css-set-rule-selector-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698