Changeset 14637 in webkit


Ignore:
Timestamp:
May 30, 2006 6:31:27 PM (18 years ago)
Author:
tomernic
Message:

Reviewed by Geoff.

<rdar://problem/4567776> REGRESSION: window.open() links do not work at www.newarchery.com

  • bindings/js/kjs_window.cpp: (KJS::WindowFunc::callAsFunction): Set the URL in the ResourceRequest; otherwise, it'll be uninitialized and createNewWindow() will not be able to load the URL into a pre-existing frame.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r14634 r14637  
     12006-05-30  Tim Omernick  <timo@apple.com>
     2
     3        Reviewed by Geoff.
     4
     5        <rdar://problem/4567776> REGRESSION: window.open() links do not work at www.newarchery.com
     6
     7        * bindings/js/kjs_window.cpp:
     8        (KJS::WindowFunc::callAsFunction):
     9        Set the URL in the ResourceRequest; otherwise, it'll be uninitialized and createNewWindow() will
     10        not be able to load the URL into a pre-existing frame.
     11
    1122006-05-30  Sam Weinig  <sam.weinig@gmail.com>
    213
  • trunk/WebCore/bindings/js/kjs_window.cpp

    r14620 r14637  
    15441544
    15451545      ResourceRequest request;
     1546      request.setURL(url);
    15461547      request.frameName = frameName.deprecatedString();
    15471548      if (request.frameName == "_top") {
Note: See TracChangeset for help on using the changeset viewer.