| Index: third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-links.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-links.html b/third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-links.html
|
| index 09c7dcabcb8a3ac09e439ae64b315c8fe573f68b..7cc4a5ce4361de7cffe058de9bce304cb81902db 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-links.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-links.html
|
| @@ -20,9 +20,11 @@ function test()
|
| for (var i = 0; i < viewMessages.length; ++i) {
|
| var uiMessage = viewMessages[i];
|
| var element = uiMessage.contentElement();
|
| - var hrefs = element.querySelectorAll(".webkit-html-resource-link");
|
| - for (var href of hrefs)
|
| - InspectorTest.addResult("linked url:" + href.href);
|
| + var links = element.querySelectorAll(".devtools-link");
|
| + for (var link of links) {
|
| + var info = Components.Linkifier._linkInfo(link);
|
| + InspectorTest.addResult("linked url:" + (info && info.url));
|
| + }
|
| }
|
|
|
| InspectorTest.completeTest();
|
|
|