[Webkit-unassigned] [Bug 93828] [EFL][WK2][Minibrowser] Support html link of blank target attribute.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Aug 13 18:23:49 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=93828


Ryuan Choi <ryuan.choi at samsung.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #157981|commit-queue?               |commit-queue-
               Flag|                            |




--- Comment #8 from Ryuan Choi <ryuan.choi at samsung.com>  2012-08-13 18:24:19 PST ---
(From update of attachment 157981)
View in context: https://bugs.webkit.org/attachment.cgi?id=157981&action=review

> Tools/MiniBrowser/efl/main.c:203
> +    pid = fork();
> +    if (!pid) // child process
> +        execl(cmd, cmd, url, (char *)NULL);
> +    else if (pid < 0) // failed to fork
> +        fprintf(stderr, "Failed to fork\n");

You don't need to fork process.
Instead, create new evas and ewk_view.

> Tools/MiniBrowser/efl/main.c:253
> +    evas_object_smart_callback_add(app->browser, "policy,decision,new,window", on_new_window, app);

If I am right, policy,decision,new,window is for creating window.

You can call create,window

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list