- Fixes SAP bug <rdar://problem/
3751295> Personalize link at the
top gives an error in the pop-up window.
* khtml/ecma/kjs_window.cpp:
(WindowFunc::tryCall): Passes a referrer to KHTMLPart::begin()
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7371
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2004-08-25 Kevin Decker <kdecker@apple.com>
+
+ Reviewed by John and Maciej.
+
+ - Fixes SAP bug <rdar://problem/3751295> Personalize link at the
+ top gives an error in the pop-up window.
+
+ * khtml/ecma/kjs_window.cpp:
+ (WindowFunc::tryCall): Passes a referrer to KHTMLPart::begin()
+
2004-08-25 Richard Williamson <rjw@apple.com>
Updated to <canvas> API to match the spec. (Still need
khtmlpart->setOpener(part);
khtmlpart->setOpenedByJS(true);
if (khtmlpart->document().isNull()) {
- khtmlpart->begin();
+ part->docImpl()->baseURL() == 0 ? khtmlpart->begin() : khtmlpart->begin(part->docImpl()->baseURL());
khtmlpart->write("<HTML><BODY>");
khtmlpart->end();