Closed
Bug 40506
Opened 25 years ago
Closed 25 years ago
nsIWebProgressListener needs status text
Categories
(Core Graveyard :: Embedding: APIs, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
M16
People
(Reporter: jud, Assigned: warrensomebody)
Details
(Keywords: embed, Whiteboard: [nsbeta2-])
we currently push numeric progress out via the nsIWebProgressListener interface,
but we don't push text (i.e. "Connecting to host X").
This is probably a new method off of nsIWebProgressListener.
| Reporter | ||
Comment 1•25 years ago
|
||
-> nsbeta2. We need to get this going so embedding clients can have status text.
Keywords: nsbeta2
Target Milestone: --- → M16
Putting on [nsbeta2+][w/b minus on 6/22] radar. Cannot wait or beta2 on this.
M16 has been out for a while now, these bugs target milestones need to be
updated.
Comment 4•25 years ago
|
||
Cleaning up status whiteboard and marking beta2 minus (6/22 has passed)
If this is critical to embedding in the very short term, then Valeski will mark
this nsbeta2 plus work out a safe landing plan for the changes.
Whiteboard: [nsbeta2+][w/b minus on 6/22] → [nsbeta2-]
| Assignee | ||
Comment 6•25 years ago
|
||
Checked in.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Comment 8•24 years ago
|
||
Verified fixed using build 2001-02-06
Testcase:
-----------snippet
<!DOCTYPE HTML PUBLIC "-//w3c//DVD HTML 3.2 Final//EN">
<html>
<head>
<!--
This is my test page
-->
<title>Scroll Test Page</title>
</head>
<body>
<h1><align="Left">The status line will Scroll</h1>
<hr>
<p>
<SCRIPT LANGUAGE="JAVASCRIPT">
var msg = "Testing?";
var spacer = "... ...";
var pos = 0;
//ScrollText = prompt("Enter text:");
//msg = ScrollText;
function ScrollMessage() {
window.status = msg.substring(pos, msg.length) + msg.substring(0, pos);
pos++;
if (pos > msg.length) pos = 0;
window.setTimeout("ScrollMessage()",200);
}
ScrollMessage();
</script>
</body>
</html>
------------->
Status: RESOLVED → VERIFIED
Updated•6 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•