runJavaScriptAlert, runJavaScriptConfirm and runJavaScriptPrompt are currently unimplemented in MiniBrowser.
Created attachment 95332 [details] Patch
Comment on attachment 95332 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=95332&action=review > Tools/MiniBrowser/gtk/BrowserWindow.c:191 > + char *buffer = (char *)g_malloc(length * sizeof(char)); You can omit sizeof(char) here. I'm pretty sure it's always one in C. Please put a space after the cast. > Tools/MiniBrowser/gtk/BrowserWindow.c:460 > + WKStringRef retval = (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_OK) ? WKStringCreateWithUTF8CString(gtk_entry_get_text(GTK_ENTRY(entry))) : 0; -> returnValue
Committed r87690: <http://trac.webkit.org/changeset/87690>