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

Unified Diff: LayoutTests/inspector/layer-compositing-reasons.html

Issue 83123002: DevTools: Move DOMNode.appropriateSelectorFor() into DOMPresentationUtil. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « LayoutTests/inspector/elements/move-node.html ('k') | Source/devtools/front_end/DOMAgent.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/layer-compositing-reasons.html
diff --git a/LayoutTests/inspector/layer-compositing-reasons.html b/LayoutTests/inspector/layer-compositing-reasons.html
index ec34d69402c7dafc8f3fa08cd0334e9cfdc5de51..1b82dc86e147b72306142ff6b7adddfca8d84200 100644
--- a/LayoutTests/inspector/layer-compositing-reasons.html
+++ b/LayoutTests/inspector/layer-compositing-reasons.html
@@ -24,7 +24,7 @@ function test()
layer.requestCompositingReasons(function(reasons)
{
var node = WebInspector.domAgent.nodeForId(layer.nodeIdForSelfOrAncestor());
- var label = node.appropriateSelectorFor(false);
+ var label = WebInspector.DOMPresentationUtils.appropriateSelectorFor(node, false);
InspectorTest.addResult("Compositing reasons for " + label + ": " + reasons.sort().join(","));
callback();
});
« no previous file with comments | « LayoutTests/inspector/elements/move-node.html ('k') | Source/devtools/front_end/DOMAgent.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698