Home | History | Annotate | Download | only in js

Lines Matching refs:sections

1392  * Expands scope sections matching the filter and invokes the callback on
1400 var sections = WebInspector.currentPanel.sidebarPanes.scopechain.sections;
1412 for (var i = 0; i < sections.length - 1; i++) {
1413 var section = sections[i];
1414 if (!filter(sections, i))
1452 test._expandScopeSections(function(sections, i) {
1453 return i < sections.length - 1;
1458 // Check scope sections contents.
1566 test._expandScopeSections(function(sections, i) {
1568 test.assertTrue(sections[i].object.isLocal, "Scope #0 is not Local.");
1569 localScopeSection = sections[i];