Closed
Bug 166312
(sadsadsad)
Opened 22 years ago
Closed 22 years ago
window.status code to deal with a " bottom scroller " doesnt respect tabs
Categories
(SeaMonkey :: Tabbed Browser, defect)
Tracking
(Not tracked)
VERIFIED
DUPLICATE
of bug 104532
People
(Reporter: hunterp, Assigned: jag+mozilla)
References
()
Details
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826
window.status code to deal with a " bottom scroller " doesnt respect tabs
the scrolling text at the status area stays the same even when in a different tab.
Reproducible: Always
Steps to Reproduce:
1.goto that http://www.askmysite.com/ with a couple of tabs already open before
2. then goto another tab and the scroll message remains
3. I think this is the code for it.
<script LANGUAGE="JavaScript">
<!-- Start of scroller script
var scrollCounter = 0;
var scrollText = "Research Meditation Workshops, Brand Concept Creation
and PR Supervision";
var scrollDelay = 95;
var i = 0;
while (i ++ < 140)
scrollText = " " + scrollText;
function Scroller()
{
window.status = scrollText.substring(scrollCounter++,
scrollText.length);
if (scrollCounter == scrollText.length)
scrollCounter = 0;
setTimeout("Scroller()", scrollDelay);
}
Scroller();
// End of scroller script -->
Please tell me if this change required a simple if then else fix, or something
more abstract,
Reporter | ||
Updated•22 years ago
|
Alias: sadsadsad
Comment 1•22 years ago
|
||
---> Tabbed Browser component. Dupe of bug 104532 - ?
"Status bar ticker fails to update when tabs switched"
Assignee: rogerl → jaggernaut
Component: JavaScript Engine → Tabbed Browser
QA Contact: pschwartau → sairuh
Reporter | ||
Comment 2•22 years ago
|
||
I would say its a Dupe
bug 104532
Comment 3•22 years ago
|
||
OK, I'll resolve this one as a duplicate.
You will be cc'ed on bug 104532 so you can follow progress
on this issue. Thank you for this report -
*** This bug has been marked as a duplicate of 104532 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
Comment 4•22 years ago
|
||
mass-verification of Duplicates.
mail search string for bugspam: SolarFlaresAreTheCause
Status: RESOLVED → VERIFIED
Updated•16 years ago
|
Product: Core → SeaMonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•