| Index: third_party/WebKit/LayoutTests/inspector/elements/inspect-mode-after-profiling.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/inspect-mode-after-profiling.html b/third_party/WebKit/LayoutTests/inspector/elements/inspect-mode-after-profiling.html
|
| index 103b1a351ec73db0b6383dc147cf0363b1119ee1..8d40576c3d6937660b857d861faf1e50bd6b7d98 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/elements/inspect-mode-after-profiling.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/inspect-mode-after-profiling.html
|
| @@ -22,13 +22,13 @@ function test()
|
|
|
| function clickAtInspected()
|
| {
|
| - InspectorTest.firstElementsTreeOutline().addEventListener(WebInspector.ElementsTreeOutline.Events.SelectedNodeChanged, dumpAndFinish);
|
| + InspectorTest.firstElementsTreeOutline().addEventListener(Elements.ElementsTreeOutline.Events.SelectedNodeChanged, dumpAndFinish);
|
| InspectorTest.evaluateInPage("click()");
|
| }
|
|
|
| function dumpAndFinish()
|
| {
|
| - InspectorTest.firstElementsTreeOutline().removeEventListener(WebInspector.ElementsTreeOutline.Events.SelectedNodeChanged, dumpAndFinish);
|
| + InspectorTest.firstElementsTreeOutline().removeEventListener(Elements.ElementsTreeOutline.Events.SelectedNodeChanged, dumpAndFinish);
|
| var selectedElement = InspectorTest.firstElementsTreeOutline().selectedTreeElement;
|
| InspectorTest.addResult("Node selected: " + selectedElement.node().getAttribute("id"));
|
| InspectorTest.completeTest();
|
|
|