| Index: LayoutTests/inspector/elements/styles/styles-update-links.html
|
| diff --git a/LayoutTests/inspector/elements/styles/styles-update-links.html b/LayoutTests/inspector/elements/styles/styles-update-links.html
|
| index 0d40846f2ee920e62d8fd05afbf4499f3bf675a2..e42c5d270ab9a7e081358e8766d2e006b6fd95a4 100644
|
| --- a/LayoutTests/inspector/elements/styles/styles-update-links.html
|
| +++ b/LayoutTests/inspector/elements/styles/styles-update-links.html
|
| @@ -104,7 +104,7 @@ function test()
|
|
|
| function getMatchedRules()
|
| {
|
| - var matchedStyleSections = WebInspector.panels.elements.sidebarPanes.styles.sections[0];
|
| + var matchedStyleSections = WebInspector.inspectorView.panel("elements").sidebarPanes.styles.sections[0];
|
| var rules = [];
|
| for (var i = 1; i < matchedStyleSections.length; ++i) {
|
| var rule = matchedStyleSections[i].rule;
|
| @@ -133,7 +133,7 @@ function test()
|
|
|
| function editSelector()
|
| {
|
| - var section = WebInspector.panels.elements.sidebarPanes.styles.sections[0][4];
|
| + var section = WebInspector.inspectorView.panel("elements").sidebarPanes.styles.sections[0][4];
|
| section.startEditingSelector();
|
| section._selectorElement.textContent = ".should-change, .INSERTED-OTHER-SELECTOR";
|
| section._selectorElement.dispatchEvent(InspectorTest.createKeyEvent("Enter"));
|
|
|