1/*
2 * Copyright (C) 2012 Samsung Electronics Ltd. All Rights Reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#include "config.h"
26
27#include <gtk/gtk.h>
28#include <webkit2/webkit2.h>
29
30int main(int argc, char** argv)
31{
32 gtk_init(&argc, &argv);
33
34 // Overwrite WEBKIT_INSPECTOR_SERVER variable with default value.
35 g_setenv("WEBKIT_INSPECTOR_SERVER", "127.0.0.1:2999", TRUE);
36
37 WebKitWebView* webView = WEBKIT_WEB_VIEW(webkit_web_view_new());
38 webkit_settings_set_enable_developer_extras(webkit_web_view_get_settings(webView), TRUE);
39 webkit_web_view_load_html(webView,
40 "<html><body><p>WebKitGTK+ Inspector Test Server</p></body></html>",
41 "http://127.0.0.1:2999/");
42
43 GtkWidget* window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
44 gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(webView));
45 gtk_widget_show_all(window);
46
47 g_signal_connect(window, "delete-event", G_CALLBACK(gtk_main_quit), 0);
48
49 gtk_main();
50}
51