| Index: LayoutTests/inspector/debugger-expand-scope.html
|
| ===================================================================
|
| --- LayoutTests/inspector/debugger-expand-scope.html (revision 76938)
|
| +++ LayoutTests/inspector/debugger-expand-scope.html (working copy)
|
| @@ -35,7 +35,7 @@
|
| {
|
| // Expand all but global scopes. Expanding global scope takes for too long
|
| // so we keep it collapsed.
|
| - var sections = WebInspector.currentPanel.sidebarPanes.scopechain.sections;
|
| + var sections = WebInspector.currentPanel.sidebarPanes.scopechain._sections;
|
| // global scope is always the last one.
|
| for (var i = 0; i < sections.length - 1; i++)
|
| sections[i].expand();
|
| @@ -44,7 +44,7 @@
|
|
|
| function step3()
|
| {
|
| - var sections = WebInspector.currentPanel.sidebarPanes.scopechain.sections;
|
| + var sections = WebInspector.currentPanel.sidebarPanes.scopechain._sections;
|
| InspectorTest.addResult("");
|
| InspectorTest.addResult("Dump scope sections:");
|
| for (var i = 0; i < sections.length; i++) {
|
|
|