Closed
Bug 466829
Opened 17 years ago
Closed 11 years ago
Caching of iframe target when page reload
Categories
(Core :: General, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 279048
People
(Reporter: howachen, Unassigned)
References
()
Details
User-Agent: Opera/9.50 (Windows NT 5.1; U; en)
Build Identifier:
Consider HTML like:
==============================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html><head><title>Demo</title></head>
<body>
<script type="text/javascript">
if( parseInt( Math.random() * 10 ) % 2 ) {
var ifb1 = "Yahoo: <iframe id='ifb-yahoo' src='http://www.yahoo.com'></iframe>";
document.write( ifb1 );
} else {
var ifb2 = "Google: <iframe id='ifb-google' src='http://www.google.com'></iframe>";
document.write( ifb2 );
}
</script>
</body>
</html>
==============================
Sometimes you will see the iframe is inconsistent with the word, e.g. showing Google iframe next to the world - "Yahoo"
Reproducible: Always
Steps to Reproduce:
Try my URL:
http://howachen.googlepages.com/a.html
Actual Results:
The iframe is not consistent with the word, when you press F5 to refresh the page.
Expected Results:
The iframe should be consistent with the word, when you press F5 to refresh the page.
Comment 1•17 years ago
|
||
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1b2pre) Gecko/20081125 Minefield/3.1b2pre
Confirmed, but I could reproduce it only rarely.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Product: Firefox → Core
QA Contact: general → general
Version: unspecified → Trunk
Comment 2•17 years ago
|
||
Is this trunk-only, Howard?
Duplicate of bug 279048?
Comment 4•11 years ago
|
||
The behaviour in this bug is fixed and should be marked duplicate of Bug 279048. For non-static iframe caching breakage, people should look for Bug 363840.
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•