| 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 ecd620ffb172999d1bdb703373ce3b8b0ce6bdd1..09c7dcabcb8a3ac09e439ae64b315c8fe573f68b 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,8 +20,9 @@ function test()
|
| for (var i = 0; i < viewMessages.length; ++i) {
|
| var uiMessage = viewMessages[i];
|
| var element = uiMessage.contentElement();
|
| - var href = element.querySelector(".webkit-html-external-link");
|
| - InspectorTest.addResult("linked url:" + href.href);
|
| + var hrefs = element.querySelectorAll(".webkit-html-resource-link");
|
| + for (var href of hrefs)
|
| + InspectorTest.addResult("linked url:" + href.href);
|
| }
|
|
|
| InspectorTest.completeTest();
|
|
|