--- /b/rr/tmpKwCSBB/w/layout-test-results/http/tests/devtools/sources/debugger/debug-inlined-scripts-expected.txt
+++ /b/rr/tmpKwCSBB/w/layout-test-results/http/tests/devtools/sources/debugger/debug-inlined-scripts-actual.txt
@@ -21,79 +21,69 @@
 f4();
 </script>
 
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/debugger-test.js"></script>
-
-<script>
-
-var test = function()
-{
-    var panel = UI.panels.sources;
-    SourcesTestRunner.startDebuggerTest(step1, true);
-
-    function callstackStatus()
-    {
-        var statusElement = panel.element.querySelector(".paused-message");
-        return statusElement ? statusElement.deepTextContent() : "not found";
+<script src="../../../inspector/inspector-test.js"></script>
+<script src="../../../inspector/debugger-test.js"></script>
+
+<script>
+
+var test = function() {
+  var panel = UI.panels.sources;
+  SourcesTestRunner.startDebuggerTest(step1, true);
+
+  function callstackStatus() {
+    var statusElement = panel.element.querySelector('.paused-message');
+    return statusElement ? statusElement.deepTextContent() : 'not found';
+  }
+
+  function step1() {
+    SourcesTestRunner.showScriptSource('debug-inlined-scripts.html', step2);
+  }
+
+  function step2(sourceFrame) {
+    TestRunner.addResult('Script source was shown.');
+
+    SourcesTestRunner.setBreakpoint(sourceFrame, 2, '', true);
+    SourcesTestRunner.setBreakpoint(sourceFrame, 9, '', true);
+
+    SourcesTestRunner.waitJavaScriptSourceFrameBreakpoints(sourceFrame).then(() => {
+      TestRunner.reloadPage(() => SourcesTestRunner.completeDebuggerTest());
+    });
+
+    SourcesTestRunner.waitUntilPaused(step3);
+  }
+
+  function step3(callFrames) {
+    TestRunner.addResult('Script execution paused.');
+    SourcesTestRunner.captureStackTrace(callFrames);
+    TestRunner.addResult('Call stack status: ' + callstackStatus());
+    SourcesTestRunner.showScriptSource('debug-inlined-scripts.html', step4);
+  }
+
+  function step4(sourceFrame) {
+    SourcesTestRunner.dumpSourceFrameContents(sourceFrame);
+    SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
+  }
+
+  function step5(callFrames) {
+    if (callFrames[0].location().lineNumber !== 9) {
+      SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
+      return;
     }
 
-    function step1()
-    {
-        SourcesTestRunner.showScriptSource("debug-inlined-scripts.html", step2);
-    }
-
-    function step2(sourceFrame)
-    {
-        TestRunner.addResult("Script source was shown.");
-
-        SourcesTestRunner.setBreakpoint(sourceFrame, 2, "", true);
-        SourcesTestRunner.setBreakpoint(sourceFrame, 9, "", true);
-
-        SourcesTestRunner.waitJavaScriptSourceFrameBreakpoints(sourceFrame)
-            .then(() => {
-                TestRunner.reloadPage(() => SourcesTestRunner.completeDebuggerTest());
-            });
-
-        SourcesTestRunner.waitUntilPaused(step3);
-    }
-
-    function step3(callFrames)
-    {
-        TestRunner.addResult("Script execution paused.");
-        SourcesTestRunner.captureStackTrace(callFrames);
-        TestRunner.addResult("Call stack status: " + callstackStatus());
-        SourcesTestRunner.showScriptSource("debug-inlined-scripts.html", step4);
-    }
-
-    function step4(sourceFrame)
-    {
-        SourcesTestRunner.dumpSourceFrameContents(sourceFrame);
-        SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
-    }
-
-    function step5(callFrames)
-    {
-        if (callFrames[0].location().lineNumber !== 9) {
-            SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
-            return;
-        }
-
-        TestRunner.addResult("Script execution paused.");
-        SourcesTestRunner.captureStackTrace(callFrames);
-        SourcesTestRunner.showScriptSource("debug-inlined-scripts.html", step6);
-    }
-
-    function step6(sourceFrame)
-    {
-        SourcesTestRunner.dumpSourceFrameContents(sourceFrame);
-        SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step7));
-    }
-
-    function step7()
-    {
-        SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
-    }
-}
+    TestRunner.addResult('Script execution paused.');
+    SourcesTestRunner.captureStackTrace(callFrames);
+    SourcesTestRunner.showScriptSource('debug-inlined-scripts.html', step6);
+  }
+
+  function step6(sourceFrame) {
+    SourcesTestRunner.dumpSourceFrameContents(sourceFrame);
+    SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step7));
+  }
+
+  function step7() {
+    SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
+  }
+};
 
 </script>
 
@@ -128,79 +118,69 @@
 f4();
 </script>
 
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/debugger-test.js"></script>
-
-<script>
-
-var test = function()
-{
-    var panel = UI.panels.sources;
-    SourcesTestRunner.startDebuggerTest(step1, true);
-
-    function callstackStatus()
-    {
-        var statusElement = panel.element.querySelector(".paused-message");
-        return statusElement ? statusElement.deepTextContent() : "not found";
+<script src="../../../inspector/inspector-test.js"></script>
+<script src="../../../inspector/debugger-test.js"></script>
+
+<script>
+
+var test = function() {
+  var panel = UI.panels.sources;
+  SourcesTestRunner.startDebuggerTest(step1, true);
+
+  function callstackStatus() {
+    var statusElement = panel.element.querySelector('.paused-message');
+    return statusElement ? statusElement.deepTextContent() : 'not found';
+  }
+
+  function step1() {
+    SourcesTestRunner.showScriptSource('debug-inlined-scripts.html', step2);
+  }
+
+  function step2(sourceFrame) {
+    TestRunner.addResult('Script source was shown.');
+
+    SourcesTestRunner.setBreakpoint(sourceFrame, 2, '', true);
+    SourcesTestRunner.setBreakpoint(sourceFrame, 9, '', true);
+
+    SourcesTestRunner.waitJavaScriptSourceFrameBreakpoints(sourceFrame).then(() => {
+      TestRunner.reloadPage(() => SourcesTestRunner.completeDebuggerTest());
+    });
+
+    SourcesTestRunner.waitUntilPaused(step3);
+  }
+
+  function step3(callFrames) {
+    TestRunner.addResult('Script execution paused.');
+    SourcesTestRunner.captureStackTrace(callFrames);
+    TestRunner.addResult('Call stack status: ' + callstackStatus());
+    SourcesTestRunner.showScriptSource('debug-inlined-scripts.html', step4);
+  }
+
+  function step4(sourceFrame) {
+    SourcesTestRunner.dumpSourceFrameContents(sourceFrame);
+    SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
+  }
+
+  function step5(callFrames) {
+    if (callFrames[0].location().lineNumber !== 9) {
+      SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
+      return;
     }
 
-    function step1()
-    {
-        SourcesTestRunner.showScriptSource("debug-inlined-scripts.html", step2);
-    }
-
-    function step2(sourceFrame)
-    {
-        TestRunner.addResult("Script source was shown.");
-
-        SourcesTestRunner.setBreakpoint(sourceFrame, 2, "", true);
-        SourcesTestRunner.setBreakpoint(sourceFrame, 9, "", true);
-
-        SourcesTestRunner.waitJavaScriptSourceFrameBreakpoints(sourceFrame)
-            .then(() => {
-                TestRunner.reloadPage(() => SourcesTestRunner.completeDebuggerTest());
-            });
-
-        SourcesTestRunner.waitUntilPaused(step3);
-    }
-
-    function step3(callFrames)
-    {
-        TestRunner.addResult("Script execution paused.");
-        SourcesTestRunner.captureStackTrace(callFrames);
-        TestRunner.addResult("Call stack status: " + callstackStatus());
-        SourcesTestRunner.showScriptSource("debug-inlined-scripts.html", step4);
-    }
-
-    function step4(sourceFrame)
-    {
-        SourcesTestRunner.dumpSourceFrameContents(sourceFrame);
-        SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
-    }
-
-    function step5(callFrames)
-    {
-        if (callFrames[0].location().lineNumber !== 9) {
-            SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
-            return;
-        }
-
-        TestRunner.addResult("Script execution paused.");
-        SourcesTestRunner.captureStackTrace(callFrames);
-        SourcesTestRunner.showScriptSource("debug-inlined-scripts.html", step6);
-    }
-
-    function step6(sourceFrame)
-    {
-        SourcesTestRunner.dumpSourceFrameContents(sourceFrame);
-        SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step7));
-    }
-
-    function step7()
-    {
-        SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
-    }
-}
+    TestRunner.addResult('Script execution paused.');
+    SourcesTestRunner.captureStackTrace(callFrames);
+    SourcesTestRunner.showScriptSource('debug-inlined-scripts.html', step6);
+  }
+
+  function step6(sourceFrame) {
+    SourcesTestRunner.dumpSourceFrameContents(sourceFrame);
+    SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step7));
+  }
+
+  function step7() {
+    SourcesTestRunner.resumeExecution(SourcesTestRunner.waitUntilPaused.bind(null, step5));
+  }
+};
 
 </script>
 
