Closed
Bug 96215
Opened 24 years ago
Closed 24 years ago
Session history is overwritten by JavaScript-generated HTML
Categories
(Core :: DOM: Navigation, defect)
Tracking
()
People
(Reporter: kazhik, Assigned: radha)
Details
Attachments
(1 file)
445 bytes,
text/html
|
Details |
Session history is overwritten by JavaScript-generated HTML.
<HTML>
<HEAD>
<TITLE>PAGE1</TITLE>
<script type="text/javascript">
function secondpage()
{
document.open();
document.write("<html>");
document.write("<head><title>PAGE2</title></head>");
document.write("<body>Second Page</body>");
document.write("</html>");
document.close();
}
</script>
</head>
<body>
<form>
<input type="button" onclick="secondpage()" value="Go to Second Page">
</form>
</BODY>
</HTML>
This page isn't stored in session history when "Go to Second Page"
button is clicked.
Reporter | ||
Comment 1•24 years ago
|
||
Assignee | ||
Comment 2•24 years ago
|
||
This feature is not yet implemented in session history. Bug 35340 addresses this.
*** This bug has been marked as a duplicate of 35340 ***
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
Comment 3•23 years ago
|
||
mass-verifying Duplicate bugs which haven't changed since 2001.12.31.
set your search string in mail to "CitizenGKar" to filter out these messages.
Status: RESOLVED → VERIFIED
Component: History: Session → Document Navigation
QA Contact: claudius → docshell
You need to log in
before you can comment on or make changes to this bug.
Description
•