| Index: LayoutTests/http/tests/inspector-protocol/inspector-protocol-test.js
|
| diff --git a/LayoutTests/http/tests/inspector-protocol/inspector-protocol-test.js b/LayoutTests/http/tests/inspector-protocol/inspector-protocol-test.js
|
| index 084f9274d6ac5b81879d25aa67e56969f5b7f022..8d1c68f787ed8d2a30aa7b6b8a0ca9925d2f8f63 100644
|
| --- a/LayoutTests/http/tests/inspector-protocol/inspector-protocol-test.js
|
| +++ b/LayoutTests/http/tests/inspector-protocol/inspector-protocol-test.js
|
| @@ -246,6 +246,22 @@ InspectorTest.importScript = function(scriptName)
|
| window.eval(xhr.responseText + "\n//@ sourceURL=" + scriptName);
|
| }
|
|
|
| +InspectorTest.runTestSuite = function(testSuite)
|
| +{
|
| + function nextTest()
|
| + {
|
| + if (!testSuite.length) {
|
| + InspectorTest.completeTest();
|
| + return;
|
| + }
|
| + var fun = testSuite.shift();
|
| + InspectorTest.log("\nRunning test: " + fun.name);
|
| + fun.call(null, nextTest);
|
| + }
|
| +
|
| + nextTest();
|
| +}
|
| +
|
| };
|
|
|
| var outputElement;
|
|
|