Skip to main content
Filter by
Sorted by
Tagged with
-4 votes
0 answers
39 views

I'm learning how to develop desktop apps with tauri (v2) and cannot wrap my head around a styling/css problem I have. I built a custom version of the drawing application Draw.io locally and I embed it ...
Almandin's user avatar
1 vote
0 answers
64 views

I am using webitgtk6 #include <webkit/webkit.h> Here are printing result functions static void print_finished(WebKitPrintOperation *operation, gpointer user_data) { g_print("Done\n&...
Bret Joseph's user avatar
0 votes
0 answers
103 views

I asked this question on SQA a few days ago but got no response. I know this is more open-ended, so I appreciate some leeway. A majority of our users are on mobile safari, but we run our automation ...
kroe761's user avatar
  • 3,564
0 votes
1 answer
58 views

I'm trying two different ways to get the favicon of the current website (which is https://google.com) that's loaded in my webview: 1: webkit_web_view_get_favicon(webview) where webview is ...
ioi-xd's user avatar
  • 183
0 votes
1 answer
82 views

I have a C GTK project in which i'm trying to use WebKitGtk. Unfortanatly I have come acrros an issue with one my external JS script, it gives me this error: "SyntaxError: Invalid character '\...
Negevinator's user avatar
1 vote
1 answer
1k views

STS-4.21.1 just started crashing when on-hover window is triggered; the crash is at: # C [libwebkit2gtk-4.0.so.37+0xd4f568] STS-4.22.0 is also affected: # C [libwebkit2gtk-4.1.so.0+0xd600d8] Fault ...
Jan Nielsen's user avatar
0 votes
0 answers
92 views

I have tested the following code, but it doesn't seem to be effective. input[type="range"], ::-webkit-slider-runnable-track { border: none; outline: none; } I am aware that the CSS ...
Haider Ali's user avatar
1 vote
1 answer
144 views

My installed version webkit2gtk4-devel 2.40.0 doesn't have all the functions, which are stated from the WebKitGTK documentation found here. The currently missing functions, which I have come across ...
Renee Veisveer - chm46e's user avatar
0 votes
1 answer
123 views

I'm trying to get the scrollbar position in a WebKitWebView. I've read enough documentation to know that there's no intuitive way. It needs to be packaged into one executable, so a WebKitExtension won'...
DisableGraphics's user avatar
1 vote
2 answers
875 views

I've tried loading a local html file using webkit_web_view_load_uri() with a file:// URL. However, the webview would display a blank page. To circumvent this, I tried using webkit_web_view_load_html() ...
DisableGraphics's user avatar
1 vote
0 answers
257 views

I am making a web browser with gtk-rs. I am trying to do a check for fullscreen. I can get the screen size and compare that to the window size, if they are the same it is in fullscreen and I can hide ...
NotEverSoAnxious's user avatar
0 votes
1 answer
698 views

Whenever I try to browse to a youtube video using the libwebkit2gtk library in Ubuntu 18 LTS, I'm met with a "Your browser can't play this video". I see that other browsers that use this ...
ThomasMalloch13's user avatar
1 vote
0 answers
303 views

I tried to build WebKit GTK on my ARM Mac, but the linking process fails: Undefined symbols for architecture arm64: "_u_charDirection_67", referenced from: WTF::StringImpl::...
techrisdev's user avatar
0 votes
1 answer
968 views

I am running buildroot on a fedora32 machine. I enebale the webkitgtk package. Downloading and configuring of the source runs with no errors However, when during the build process, make throws an ...
Cerezo's user avatar
  • 269
2 votes
1 answer
901 views

Im building a simple web browser with Python, Gtk, and WebKitGtk. When trying to load youtube, i receive this error message: console message: about:blank @0: Refused to display 'https://accounts....
HasanQ's user avatar
  • 75
1 vote
0 answers
523 views

Hello Good morning / afternoon / night, I have started the development of an Application which needs an WebView, I discovered webkitgtk a while ago and I believe it's the best way to go since It ...
lmtr0's user avatar
  • 181
1 vote
0 answers
55 views

I'm working on a web application using WebKitGtk2 and I need to use the “window-object-cleared” signal with WebKitWebFrame. When I compile it I got an error: main.cc:11:1: error: ‘WebKitFrame’ does ...
shahril772's user avatar
1 vote
0 answers
745 views

I build a Webkitgtk by Tools/Scripts/build-webkit --gtk --debug Is there a way I can debug it in GDB on linux with an HTML file? I don't know how to run a WebKitWebProcess that opens an HTML file. ...
Clover Ye's user avatar
  • 273
2 votes
1 answer
977 views

I haven't really found a solid answer to this question other than "get more ram". Is there a way to reduce the memory used by g++ during the compile process? I am (for reasons) trying to compile ...
Raven King's user avatar
1 vote
1 answer
199 views

With the following code: #include <webkit2/webkit-web-extension> /* Skipping through a lot of code */ { JSCValue* result = jsc_context_evalutate(jsCtx, "document.getElementsByTagName('body')",...
A student's user avatar
  • 180
2 votes
1 answer
612 views

I am learning webExtensions and I had written a sample web extension for webkit where I used javascriptcore DOM/C API.. I had referred Binding native objects with JavascriptCore C Api and https://...
munez bn's user avatar
0 votes
0 answers
52 views

This seems like a really dumb question, but I can't figure out what to Google. I want the xkcd hovertext, which is the title attribute of the img tag. WebKitHitTestResult has get_link_uri, ...
Anschel Schaffer-Cohen's user avatar
0 votes
1 answer
338 views

I have created a shared library which has a function displaywebview that launches a GTK window and loads the URL into it using webkit2gtk. Now I am writing a caller program which loads this library ...
Jainam MJ's user avatar
  • 360
4 votes
2 answers
3k views

brew install webkitgtk Not finding package, when installing from macports it doesn't finding by gtk-rs when compiling my project on rust with gtk-rs and webkit2gtk-rs
Адель Прокуров's user avatar
1 vote
1 answer
2k views

I'm attempting to build a really simple browser using gtk+ and webkitgtk. This necessitates what a typical browser would need: a uri bar, a back button, home button, and actual webpage display area. ...
Jonathan Wong's user avatar