Home | History | Annotate | Download | only in tests

Lines Matching full:webview

32     GtkWidget* webView;
54 fixture->webView = webkit_web_view_new();
57 gtk_container_add(GTK_CONTAINER(fixture->window), GTK_WIDGET(fixture->webView));
99 webkit_web_view_load_string(WEBKIT_WEB_VIEW (fixture->webView), (const char*)fixture->data, NULL, NULL, NULL);
104 static void load_event_callback(WebKitWebView* webView, GParamSpec* spec, DomDomviewFixture* fixture)
106 WebKitLoadStatus status = webkit_web_view_get_load_status(webView);
111 gtk_test_widget_click(GTK_WIDGET(fixture->webView), 1, 0);
119 WebKitWebView* view = (WebKitWebView*)fixture->webView;
130 g_signal_connect(fixture->webView, "notify::load-status", G_CALLBACK(load_event_callback), fixture);
150 static void load_status_callback(WebKitWebView* webView, GParamSpec* spec, DomDomviewFixture* fixture)
152 WebKitLoadStatus status = webkit_web_view_get_load_status(webView);
160 document = webkit_web_view_get_dom_document(WEBKIT_WEB_VIEW(fixture->webView));
189 g_signal_connect(fixture->webView, "notify::load-status", G_CALLBACK(load_status_callback), fixture);