| Index: third_party/WebKit/LayoutTests/http/tests/inspector/elements-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/elements-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/elements-test.js
|
| index e3c0eaab984138ec5e67c4412de5b3d5c0f57800..25db6a9b7ba8f4291673113f0de57fb6c53d6d2d 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/elements-test.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/elements-test.js
|
| @@ -9,7 +9,7 @@ InspectorTest.inlineStyleSection = function()
|
|
|
| InspectorTest.computedStyleWidget = function()
|
| {
|
| - return WebInspector.panels.elements.sidebarPanes.computedStyle.children()[0]
|
| + return WebInspector.panels.elements.sidebarPanes.computedStyle;
|
| }
|
|
|
| InspectorTest.dumpComputedStyle = function(doNotAutoExpand)
|
| @@ -437,8 +437,8 @@ InspectorTest.toggleMatchedStyleProperty = function(propertyName, checked)
|
| InspectorTest.eventListenersWidget = function()
|
| {
|
| var sidebarPane = WebInspector.panels.elements.sidebarPanes.eventListeners;
|
| - sidebarPane.expandPane();
|
| - return sidebarPane.children()[0];
|
| + sidebarPane.requestReveal();
|
| + return sidebarPane;
|
| }
|
|
|
| InspectorTest.expandAndDumpSelectedElementEventListeners = function(callback)
|
|
|