RESOLVED FIXED 103229
[EFL][WK2] Duplicated WebPageGroup initialization
https://bugs.webkit.org/show_bug.cgi?id=103229
Summary [EFL][WK2] Duplicated WebPageGroup initialization
Jinwoo Song
Reported 2012-11-26 01:41:37 PST
WebPageGroup does not need to be created in creating EwkView when the pageGroupRef is 0 because the default WebPageGroup(m_defaultPageGroup) is created in WebContext constructor. As a side effect on the duplicated initialization, pageGroupID increases even when the EwkView is created with default context. The issue can be easily detected with the following test case. (Even the window name is same, the new window is created.) http://www.w3schools.com/js/tryit.asp?filename=try_win_name
Attachments
Patch (1.73 KB, patch)
2012-11-26 01:49 PST, Jinwoo Song
kenneth: review+
patch (1.71 KB, patch)
2012-11-30 22:26 PST, Jinwoo Song
no flags
Jinwoo Song
Comment 1 2012-11-26 01:49:50 PST
Kangil Han
Comment 2 2012-11-27 19:18:15 PST
LGTM, thanks. :)
Ryuan Choi
Comment 3 2012-11-27 19:50:27 PST
LGTM too
WebKit Review Bot
Comment 4 2012-11-27 21:29:14 PST
Comment on attachment 175942 [details] Patch Clearing flags on attachment: 175942 Committed r135973: <http://trac.webkit.org/changeset/135973>
WebKit Review Bot
Comment 5 2012-11-27 21:29:18 PST
All reviewed patches have been landed. Closing bug.
WebKit Review Bot
Comment 6 2012-11-28 22:48:58 PST
Re-opened since this is blocked by bug 103604
Jinwoo Song
Comment 7 2012-11-29 17:39:28 PST
ewk_setting API test cases should be fixed to land this patch. (bug 103692)
Chris Dumez
Comment 8 2012-11-30 00:31:04 PST
Kenneth, could you please take a look at this? This patch changes the behavior a bit. All the views from the default context will be in the same PageGroup, meaning that they will share the settings. Previously, we were creating a new PageGroup for each view and therefore, each view had its own settings.
Kenneth Rohde Christiansen
Comment 9 2012-11-30 01:07:59 PST
Comment on attachment 175942 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=175942&action=review > Source/WebKit2/UIProcess/API/efl/ewk_view.cpp:512 > ASSERT(!smartData->priv); > - RefPtr<WebPageGroup> pageGroup = pageGroupRef ? toImpl(pageGroupRef) : WebPageGroup::create(); > - smartData->priv = new EwkViewImpl(ewkView, context, pageGroup, behavior); > + smartData->priv = new EwkViewImpl(ewkView, context, toImpl(pageGroupRef), behavior); > return ewkView; I wonder whether we should add a comment?
Yael
Comment 10 2012-11-30 05:23:30 PST
(In reply to comment #8) > Kenneth, could you please take a look at this? > > This patch changes the behavior a bit. All the views from the default context will be in the same PageGroup, meaning that they will share the settings. > Previously, we were creating a new PageGroup for each view and therefore, each view had its own settings. That behavior was wrong. If a page creates a named popup, and then tries to create it again with the same name, we were creating a new popup instead of replacing the existing one.
Jinwoo Song
Comment 11 2012-11-30 22:23:23 PST
(In reply to comment #9) > (From update of attachment 175942 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=175942&action=review > > > Source/WebKit2/UIProcess/API/efl/ewk_view.cpp:512 > > ASSERT(!smartData->priv); > > - RefPtr<WebPageGroup> pageGroup = pageGroupRef ? toImpl(pageGroupRef) : WebPageGroup::create(); > > - smartData->priv = new EwkViewImpl(ewkView, context, pageGroup, behavior); > > + smartData->priv = new EwkViewImpl(ewkView, context, toImpl(pageGroupRef), behavior); > > return ewkView; > > I wonder whether we should add a comment? I added the comment here.
Jinwoo Song
Comment 12 2012-11-30 22:26:29 PST
Created attachment 177086 [details] patch Patch with more comments.
WebKit Review Bot
Comment 13 2012-12-11 23:42:09 PST
Comment on attachment 177086 [details] patch Clearing flags on attachment: 177086 Committed r137423: <http://trac.webkit.org/changeset/137423>
WebKit Review Bot
Comment 14 2012-12-11 23:42:14 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.