Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Unified Diff: LayoutTests/inspector/elements/inline-style-title.html

Issue 218703002: DevTools: [wip] move Elements panel off WebInspector.domModel and single tree outline. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review comment addressed (and much more) Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/inspector/elements/inline-style-title.html
diff --git a/LayoutTests/inspector/elements/inline-style-title.html b/LayoutTests/inspector/elements/inline-style-title.html
index a269498b0762967822228e7df7f0498f8a919d04..ffd1f4a9adfd13424794a45acf9dd04d3f5b9947 100644
--- a/LayoutTests/inspector/elements/inline-style-title.html
+++ b/LayoutTests/inspector/elements/inline-style-title.html
@@ -20,7 +20,7 @@ function test()
InspectorTest.nodeWithId("inline-style", onInlineStyleQueried);
- var treeOutline = WebInspector.panels.elements.treeOutline;
+ var treeOutline = InspectorTest.firstElementsTreeOutline();
var treeElement;
function onInlineStyleQueried(node)
@@ -38,7 +38,7 @@ function test()
function onStyleUpdated()
{
- WebInspector.panels.elements.treeOutline._updateModifiedNodes();
+ InspectorTest.firstElementsTreeOutline()._updateModifiedNodes();
InspectorTest.addResult("=== inline style text after change ===");
InspectorTest.addResult(treeElement.title.textContent);
InspectorTest.completeTest();

Powered by Google App Engine
This is Rietveld 408576698