Skip to content

Commit

Permalink
Use raw href attribute for fallback title instead of the resolved href
Browse files Browse the repository at this point in the history
Fixes #68425
  • Loading branch information
mjbvz committed Feb 14, 2019
1 parent 762b5f1 commit 617958f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@

newDocument.querySelectorAll('a').forEach(a => {
if (!a.title) {
a.title = a.href;
a.title = a.getAttribute('href');
}
});

Expand Down

0 comments on commit 617958f

Please sign in to comment.