Commit 8829b2b2 authored by jdoerrie's avatar jdoerrie Committed by Commit Bot

Fix Display of Origins with Leading Numbers

This change fixes the display of origins with leading numbers by adding
an appropriate bidirectional override tag.

Bug: 740853
Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation
Change-Id: I662c5505a2043e6ee03ddde2ca8a42c4b6729768
Reviewed-on: https://chromium-review.googlesource.com/585532
Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org>
Reviewed-by: default avatarHector Carmona <hcarmona@chromium.org>
Cr-Commit-Position: refs/heads/master@{#490637}
parent 8c276415
...@@ -25,7 +25,11 @@ ...@@ -25,7 +25,11 @@
<a id="originUrl" target="_blank" class="no-min-width" <a id="originUrl" target="_blank" class="no-min-width"
href="[[item.loginPair.urls.link]]" href="[[item.loginPair.urls.link]]"
focus-row-control focus-type="originUrl"> focus-row-control focus-type="originUrl">
<span class="text-elide">[[item.loginPair.urls.shown]]</span> <span class="text-elide">
<!-- This bdo tag is necessary to fix the display of domains
starting with numbers. -->
<bdo dir="ltr">[[item.loginPair.urls.shown]]</bdo>
</span>
</a> </a>
</div> </div>
<div class="username-column text-elide" <div class="username-column text-elide"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment