[webkit-changes] cvs commit: WebCore/khtml khtml_part.cpp
Vicki
vicki at opensource.apple.com
Tue Jun 28 16:22:16 PDT 2005
vicki 05/06/28 16:22:16
Modified: . ChangeLog
khtml khtml_part.cpp
Log:
Reviewed by Maciej.
- fix our part of <rdar://problem/4122332> extra HTTP GET when iframe requests file
already fetched by parent that should have been cached. Setting location via javascript
should not signal a full reload of the destination page and all its subresources.
* khtml/khtml_part.cpp:
(KHTMLPart::changeLocation): remove code that sets the reload flag
Revision Changes Path
1.4324 +11 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.4323
retrieving revision 1.4324
diff -u -r1.4323 -r1.4324
--- ChangeLog 28 Jun 2005 22:18:23 -0000 1.4323
+++ ChangeLog 28 Jun 2005 23:22:12 -0000 1.4324
@@ -1,3 +1,14 @@
+2005-06-28 Vicki Murley <vicki at apple.com>
+
+ Reviewed by Maciej.
+
+ - fix our part of <rdar://problem/4122332> extra HTTP GET when iframe requests file
+ already fetched by parent that should have been cached. Setting location via javascript
+ should not signal a full reload of the destination page and all its subresources.
+
+ * khtml/khtml_part.cpp:
+ (KHTMLPart::changeLocation): remove code that sets the reload flag
+
2005-06-28 Justin Garcia <justin.garcia at apple.com>
Patch by Kevin Ballard <kevin at sb.org>
1.325 +0 -2 WebCore/khtml/khtml_part.cpp
Index: khtml_part.cpp
===================================================================
RCS file: /cvs/root/WebCore/khtml/khtml_part.cpp,v
retrieving revision 1.324
retrieving revision 1.325
diff -u -r1.324 -r1.325
--- khtml_part.cpp 14 Jun 2005 00:23:44 -0000 1.324
+++ khtml_part.cpp 28 Jun 2005 23:22:16 -0000 1.325
@@ -2137,8 +2137,6 @@
KParts::URLArgs args;
- if (urlcmp(URL, m_url.url(), true, false))
- args.reload = true;
args.setLockHistory(lockHistory);
if (!referrer.isEmpty())
args.metaData()["referrer"] = referrer;
More information about the webkit-changes
mailing list