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

Unified Diff: LayoutTests/http/tests/inspector/inspector-test.js

Issue 118293002: DevTools: Support XHR async call stacks in the debugger. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 7 years 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
Index: LayoutTests/http/tests/inspector/inspector-test.js
diff --git a/LayoutTests/http/tests/inspector/inspector-test.js b/LayoutTests/http/tests/inspector/inspector-test.js
index 07508f9b08185c59621cdbbee9786a9c089b15ae..1c3611f80f8498f419570aae2d542bedbbf5e304 100644
--- a/LayoutTests/http/tests/inspector/inspector-test.js
+++ b/LayoutTests/http/tests/inspector/inspector-test.js
@@ -101,10 +101,6 @@ InspectorTest.check = function(passCondition, failureText)
InspectorTest.addResult = function(text)
{
- if (InspectorTest._resultBufferring) {
- InspectorTest._resultBufferringContent += text + "\n";
- return;
- }
results.push(text);
if (resultsSynchronized)
InspectorTest.Output.addResult(text);
@@ -116,20 +112,6 @@ InspectorTest.addResult = function(text)
}
}
-InspectorTest.beginResultBufferring = function()
-{
- InspectorTest._resultBufferring = true;
- InspectorTest._resultBufferringContent = "";
-}
-
-InspectorTest.endResultBufferring = function()
-{
- var result = InspectorTest._resultBufferringContent || "";
- delete InspectorTest._resultBufferring;
- delete InspectorTest._resultBufferringContent;
- return result;
-}
-
InspectorTest.addResults = function(textArray)
{
if (!textArray)
« no previous file with comments | « LayoutTests/http/tests/inspector/debugger-test.js ('k') | LayoutTests/inspector/debugger/async-callstack.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698