Index: third_party/WebKit/LayoutTests/inspector/coverage/reveal-autoformat-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/inspector/coverage/reveal-autoformat-expected.txt b/third_party/WebKit/LayoutTests/inspector/coverage/reveal-autoformat-expected.txt |
index 22888774df42b14079a3031b3f040ba67223e01e..1de39e2439b97059bde15fb21fcf55b305934e3e 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/coverage/reveal-autoformat-expected.txt |
+++ b/third_party/WebKit/LayoutTests/inspector/coverage/reveal-autoformat-expected.txt |
@@ -5,58 +5,58 @@ Tests the CSS highlight in sources after the Pretty print formatting. |
The below should be formatted |
0: - .this-line-needs-to-be-longer-than-five-hundred-symbols { |
1: - } |
-2: - |
+2: |
3: + body { |
4: + background-color: lightblue; |
5: + } |
-6: - |
+6: |
7: - .class { |
8: - color: red; |
9: - } |
-10: - |
+10: |
11: - .class2 { |
12: - color: green; |
13: - font-style: italic; |
14: - } |
-15: - |
+15: |
16: + #id { |
17: + color: blue |
18: + } |
-19: - |
+19: |
20: - notUsed { |
21: - color: black |
22: - } |
-23: - |
+23: |
24: - notUsed2 { |
25: - color: white |
26: - } |
-27: - |
+27: |
28: - #this-line-needs-to-be-longer-than-five-hundred-symbols.this-line-needs-to-be-longer-than-five-hundred-symbols { |
29: - content: "words don\'t come easy to me, how can I find a way to make a longer line"; |
30: - color: lightgoldenrodyellow; |
31: - background-color: lightgoldenrodyellow; |
32: - border-color: lightgoldenrodyellow; |
33: - } |
-34: - |
+34: |
The below should NOT be formatted |
0: + body { |
1: + background-color: lightblue; |
2: + } |
-3: - |
+3: |
4: - .class { |
5: - color: red; |
6: - } |
-7: - |
+7: |
8: - .class2 { color:green;font-style: italic; |
9: - } |
-10: - |
+10: |
11: + #id { color: blue |
12: + } |
-13: - |
+13: |
14: - notUsed {color: black} |
-15: - |
+15: |
16: - notUsed2 { |
17: - color: white |
18: - } |
-19: - |
+19: |