Back out aac6292d29f9 (bug 632365) for breaking test_leaf_layers_partition_browser_window.xul

This commit is contained in:
Phil Ringnalda 2011-09-26 19:40:50 -07:00
parent 9fd1d4050e
commit 4cbbca20b6
4 changed files with 6 additions and 16 deletions

View File

@ -254,7 +254,7 @@ pref("browser.warnOnRestart", false);
pref("browser.showQuitWarning", false);
pref("browser.fullscreen.autohide", true);
pref("browser.fullscreen.animateUp", 1);
pref("browser.overlink-delay", 80);
pref("browser.overlink-delay", 70);
#ifdef UNIX_BUT_NOT_MAC
pref("browser.urlbar.clickSelectsAll", false);

View File

@ -511,20 +511,16 @@ statuspanel[type=status] {
}
statuspanel[type=overLink] {
-moz-transition: opacity 120ms ease-out;
-moz-transition: opacity 100ms ease-out;
direction: ltr;
}
statuspanel[inactive] {
statuspanel[label=""] {
-moz-transition: none;
opacity: 0;
pointer-events: none;
}
statuspanel[inactive][previoustype=overLink] {
-moz-transition: opacity 200ms ease-out;
}
.statuspanel-inner {
height: 3em;
width: 100%;

View File

@ -4674,7 +4674,7 @@ var LinkTargetDisplay = {
return this.DELAY_SHOW = Services.prefs.getIntPref("browser.overlink-delay");
},
DELAY_HIDE: 250,
DELAY_HIDE: 150,
_timer: 0,
get _isVisible () XULBrowserWindow.statusTextField.label != "",

View File

@ -4274,17 +4274,11 @@
this.getAttribute("previoustype") == "status"
? getComputedStyle(this).width : "";
if (val) {
this.setAttribute("label", val);
this.removeAttribute("inactive");
} else {
this.setAttribute("inactive", "true");
}
this.setAttribute("label", val);
return val;
]]></setter>
<getter>
return this.hasAttribute("inactive") ? "" : this.getAttribute("label");
return this.getAttribute("label");
</getter>
</property>