Changeset 148054 in webkit


Ignore:
Timestamp:
Apr 9, 2013 2:35:39 PM (11 years ago)
Author:
andersca@apple.com
Message:

REGRESSION (r147454): Youtube annotation links to new window broken
https://bugs.webkit.org/show_bug.cgi?id=114242
<rdar://problem/13609940>

Reviewed by Beth Dakin.

Set the current user gesture to "DefinitelyProcessingNewUserGesture" if popups are allowed.

  • WebProcess/Plugins/PluginView.cpp:

(WebKit::PluginView::performFrameLoadURLRequest):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r148043 r148054  
     12013-04-09  Anders Carlsson  <andersca@apple.com>
     2
     3        REGRESSION (r147454): Youtube annotation links to new window broken
     4        https://bugs.webkit.org/show_bug.cgi?id=114242
     5        <rdar://problem/13609940>
     6
     7        Reviewed by Beth Dakin.
     8
     9        Set the current user gesture to "DefinitelyProcessingNewUserGesture" if popups are allowed.
     10
     11        * WebProcess/Plugins/PluginView.cpp:
     12        (WebKit::PluginView::performFrameLoadURLRequest):
     13
    1142013-04-09  Anders Carlsson  <andersca@apple.com>
    215
  • trunk/Source/WebKit2/WebProcess/Plugins/PluginView.cpp

    r146823 r148054  
    10801080    }
    10811081
     1082    UserGestureIndicator gestureIndicator(request->allowPopups() ? DefinitelyProcessingNewUserGesture : PossiblyProcessingUserGesture);
     1083
    10821084    // First, try to find a target frame.
    10831085    Frame* targetFrame = frame->loader()->findFrameForNavigation(request->target());
Note: See TracChangeset for help on using the changeset viewer.