[Webkit-unassigned] [Bug 197899] New: web process crashes on 32-bit on some sites

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue May 14 17:21:58 PDT 2019


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

            Bug ID: 197899
           Summary: web process crashes on 32-bit on some sites
           Product: WebKit
           Version: Other
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebKit2
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: kostirya at gmail.com

Hello.
I found that web process crashes on 32-bit when I open "http://www.gnome.org" site.
It's is worked on 64-bit. The error is only on 32-bit.
I use webkit2-gtk3-2.24

/* cc test.c `pkg-config --cflags --libs webkit2gtk-4.0` */
#include <gtk/gtk.h>
#include <stdio.h>
#include <webkit2/webkit2.h>

int
main (void)
{
  GtkWidget *web_view;
  GtkWidget *window;

  gtk_init (NULL, NULL);

  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);

  web_view = webkit_web_view_new ();
  webkit_web_view_load_uri (WEBKIT_WEB_VIEW (web_view), "http://www.gnome.org");
  gtk_container_add (GTK_CONTAINER (window), web_view);

  gtk_widget_set_size_request (web_view, 600, 500);
  gtk_widget_show_all (window);

  gtk_main ();

  return 0;
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20190515/cd331758/attachment.html>


More information about the webkit-unassigned mailing list