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

Unified Diff: LayoutTests/inspector/jump-to-previous-editing-location.html

Issue 404953004: DevTools: Refactor linkifyRawLocation to use fallback url (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address aandrey's comments #2 Created 6 years, 5 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/jump-to-previous-editing-location.html
diff --git a/LayoutTests/inspector/jump-to-previous-editing-location.html b/LayoutTests/inspector/jump-to-previous-editing-location.html
index b27e0e3f06506a3bbf93d6d2859a7bb0af66d52b..4caa5fd0f8af244e73b81f21e2caeaa9e7b2e4a6 100644
--- a/LayoutTests/inspector/jump-to-previous-editing-location.html
+++ b/LayoutTests/inspector/jump-to-previous-editing-location.html
@@ -223,7 +223,7 @@ function test()
var linkifier = new WebInspector.Linkifier();
WebInspector.inspectorView.showPanel("timeline");
var anchorURI = uiSourceCode.url;
- var anchor = linkifier.linkifyLocation(WebInspector.targetManager.mainTarget(), anchorURI, 10, 1);
+ var anchor = linkifier.linkifyScriptLocation(WebInspector.targetManager.mainTarget(), null, anchorURI, 10, 1);
WebInspector.Revealer.reveal(anchor.__uiLocation);
InspectorTest.addResult("Selection: " + panel.visibleView.textEditor.selection().toString());
dumpSelection(panel.visibleView.textEditor, "Showed anchor in " + anchorURI.split("/").pop() + " with line 333 column 3");

Powered by Google App Engine
This is Rietveld 408576698