Bug 431325 - Bookmark tooltip's title/url is cut off. ui-r=beltzner r=gavin

This commit is contained in:
Kai Liu 2008-10-01 01:36:20 +02:00
parent c473566849
commit 23b82d11cb
2 changed files with 2 additions and 2 deletions

View File

@ -768,7 +768,7 @@ var BookmarksEventHandler = {
var tooltipTitle = document.getElementById("btTitleText");
if (title && title != url) {
tooltipTitle.hidden = false;
tooltipTitle.value = title;
tooltipTitle.textContent = title;
}
else
tooltipTitle.hidden = true;

View File

@ -259,7 +259,7 @@
onpopupshowing="return BookmarksEventHandler.fillInBTTooltip(document.tooltipNode)">
<vbox id="btTooltipTextBox" flex="1">
<label id="btTitleText" class="tooltip-label" />
<label id="btUrlText" class="tooltip-label" />
<label id="btUrlText" crop="center" class="tooltip-label" />
</vbox>
</tooltip>