Index: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6-expected.txt |
index 0753e1ff664f0ada58491c859566a9dbf569ca4f..f5311f56494a4d5a30d6f1445b5a7db75115e98c 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6-expected.txt |
+++ b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-6-expected.txt |
@@ -10,16 +10,22 @@ noop(); |
Running: inlinedScriptFormatting |
====== 8< ------ |
-<html><body><script> |
-function f() {} |
-</script><script> |
-function g() { |
- var a; |
- window.return = 10; |
- if (a) |
- return; |
-} |
-</script></body></html> |
+<html> |
+ <body> |
+ <script> |
+ function f() {} |
+ </script> |
+ <script> |
+ function g() { |
dgozman
2016/04/19 01:55:03
Let's indent once?
lushnikov
2016/04/19 23:11:40
Done.
|
+ var a; |
+ window.return = 10; |
+ if (a) |
+ return; |
+ } |
+ </script> |
+ </body> |
+</html> |
+ |
------ >8 ====== |
Running: generatorFormatter |