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

Unified Diff: third_party/WebKit/LayoutTests/inspector/extensions/extensions-resources.html

Issue 2571713005: DevTools: untruncate links on console export (Closed)
Patch Set: up + test Created 4 years 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: third_party/WebKit/LayoutTests/inspector/extensions/extensions-resources.html
diff --git a/third_party/WebKit/LayoutTests/inspector/extensions/extensions-resources.html b/third_party/WebKit/LayoutTests/inspector/extensions/extensions-resources.html
index 326057adbda2f1ef9f2d4e1d798fb5369656c797..c03206b12c62993309511fe44a6fca3f3d920f2e 100644
--- a/third_party/WebKit/LayoutTests/inspector/extensions/extensions-resources.html
+++ b/third_party/WebKit/LayoutTests/inspector/extensions/extensions-resources.html
@@ -28,7 +28,7 @@ InspectorTest.clickOnURL = function()
{
UI.viewManager.showView("console").then(() => {
Console.ConsoleView.instance()._updateMessageList();
- var xpathResult = document.evaluate("//span[starts-with(., 'test-script.js')]",
+ var xpathResult = document.evaluate("//span[@class='devtools-link' and starts-with(., 'test-script.js')]",
Console.ConsoleView.instance().element, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null);
var click = document.createEvent("MouseEvent");

Powered by Google App Engine
This is Rietveld 408576698