32 | | 2. When the test page finishes loading, `runTest()` on the test page starts up the Inspector. The file `Test.js` initializes the inspecotr environment. Then, the frontend marshalls helper functions to the inspector page as well as the special `test()` method to be run. |
33 | | 3. When the inspector finishes loading, it runs the marshalled `test()` __in the inspector page__. |
| 32 | 2. When the test page finishes loading, `runTest()` executes on the test page and asks the test runner to start up the Inspector. The file `Test.js` is loaded by the Inspector and initializes its environment. Functions that execute in the Inspector use the `InspectorTest` namespace. |
| 33 | 3. When the inspector finishes loading and receives all marshalled code from the test page, it runs the `test()` method __in the inspector page__. |