Closed
Bug 9477
Opened 27 years ago
Closed 26 years ago
location.replace() fails in viewer.exe
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
VERIFIED
FIXED
People
(Reporter: richmond, Assigned: vidur)
References
()
Details
replace() does not do anything in viewer.exe, but works fine with apprunner.exe.
frame.location.href=url works fine for both.
URL: ms54.mcom.com(user "x", pass "x") → ms54.mcom.com(user
Whiteboard: [MAKINGTEST] pabreu@writeme.com
This is a very simple test-case:
<html>
<head>
<title>
Example of the confirm() method
</title>
</head>
<body>
<script language="JavaScript">
var msg = "Click OK to go to Yahoo, or click Cancel to go to Lycos.";
if (confirm(msg))
location.replace("http://www.yahoo.com");
else
location.replace("http://www.lycos.com");
</script>
</body>
</html>
*** Bug 11419 has been marked as a duplicate of this bug. ***
| Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 3•26 years ago
|
||
The replace() problem was temporary - it's been fixed for a while. Of course,
window.confirm() doesn't do anything now (used in this test case), but the
original bug is fixed.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 4•26 years ago
|
||
Tested with 10-09-09 build. Working fine. Marking verified.
You need to log in
before you can comment on or make changes to this bug.
Description
•