| Index: LayoutTests/http/tests/inspector/resources/extension-main.js
|
| diff --git a/LayoutTests/http/tests/inspector/resources/extension-main.js b/LayoutTests/http/tests/inspector/resources/extension-main.js
|
| index 13e72d9b5ccfbd2716238359dce5de73e57b5beb..e7196f492cc4143823f6112ad197cb922e5014c7 100644
|
| --- a/LayoutTests/http/tests/inspector/resources/extension-main.js
|
| +++ b/LayoutTests/http/tests/inspector/resources/extension-main.js
|
| @@ -81,13 +81,13 @@ function runTests()
|
| tests.push(symbol);
|
| }
|
| tests = tests.sort();
|
| - var testChain = onTestsDone;
|
| + var testChain = extension_onTestsDone;
|
| for (var test = tests.pop(); test; test = tests.pop())
|
| testChain = bind(runTest, this, bind(this[test], this, testChain), test);
|
| testChain();
|
| }
|
|
|
| -function onTestsDone()
|
| +function extension_onTestsDone()
|
| {
|
| output("All tests done.");
|
| evaluateOnFrontend("InspectorTest.completeTest();");
|
|
|