Questions tagged [webkit]

WebKit is an open-source Web content engine for browsers and other applications, such as Apple Safari, Mail, App Store and several mobile browsers including the pre-installed browsers for Android, iOS, RIM Blackberry, Symbian, and WebOS.

WebKit is an open-source Web content engine for browsers and other applications and was originally released by Apple in 2003 as part of its Safari browser.

Due to its open source nature and clean design, WebKit has been taken on and implemented as the engine for a wide variety of web browsers.


Documentation

7404 questions
4
votes
1 answer

List with columns gives hover effect on wrong items in Webkit/IE

Today I ran into the following problem: When using a list with multiple columns as shown in the snippet, where the list items have a margin-bottom set to them, Chrome doesn't render the bottom of the columns correctly, sending hover-events to the…
Joeytje50
  • 18,636
  • 15
  • 63
  • 95
4
votes
1 answer

How to stop WKWebView from creating too many processes?

I have a MacOS app that creates many NSViews of differing types, some of which contain WKWebViews. The Number of WKWebViews can become fairly large (dozens or more). The problem is that each of these WKWebViews creates several processes, as can be…
ArtSwanson
  • 51
  • 3
4
votes
1 answer

Web crawler capable of interpreting Javascript in python for Windows

My ultimate goal is to build a web crawler capable of downloading all of the images on a webpage. My understanding from the reading I've done is that I need to embed a rendering/layout engine such as Gecko or Webkit. Unfortunately, I'm running…
dschafer
  • 53
  • 1
  • 6
4
votes
0 answers

React-native Webkit - getting WebKitErrorDomain Code 204 on video for iOS

We have a website that needs to be ported to mobile app. We have used react-native and the webkit view. In the website, there is a play button that will open up a video. On Android, this works very well. However, it is not the same for iOS. Please…
mokko211
  • 597
  • 2
  • 9
  • 25
4
votes
1 answer

Cannot import WebKit in python via gi.repository on Mac High Sierra

I have been trying to prepare a development where I can use GTK and WebKit in python for the past few days. I have given up on ubuntu and now I just want to focus on mac first. I have installed the pygobject3 and I can load the GTK 3.0. But I can't…
Sen
  • 43
  • 8
4
votes
0 answers

WKWebView always unauthenticated on first load on simulator - then it's authenticated on all subsequent loads

In my app, I am loading a page that requires authentication in a WKWebView. On device, it is always authenticated on first load, because I have the proper cookies to authenticate it. However, if I "Erase All Content Settings" on the simulator (under…
4
votes
2 answers

How to install WebkitGTK in MacOS?

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
4
votes
1 answer

OpenType settings reset by font-weight and font-style in Chrome

I am using Raleway from Google Fonts as the main font for my project. Everything was fine with it until I noticed that the numbers are displayed in "old-style" mode, which means that some digits have ascenders or descenders going up or down from the…
Stefan Orzu
  • 413
  • 4
  • 13
4
votes
1 answer

Control scroll elasticity in WKWebKit for macOS

I want to disable the horizontal scroll elasticity of an NKWebView instance in my app for macOS. I know we can control elasticity of an NSScrollView with verticalScrollElasticity or horizontalScrollElasticity properties. But it seems to be…
1024jp
  • 2,058
  • 1
  • 16
  • 25
4
votes
0 answers

How to remove googles cache/cookies from oauth for a login terminal used by multiple people

I'm creating an application to be used in a public area. People will go up to a mounted iPad to signin, then proceed to use the app and logout. The default functionality keeps their google login information. I don't want this, I want to delete all…
Wikkle_A
  • 145
  • 2
  • 12
4
votes
3 answers

Safari hides element when applying translate3d transition inside another transition

I noticed that in the latest Safari 11.1 (working fine in Chrome and Firefox), an element with a translate3d transition disappears on the screen when applying it within another element that also contains a translate3d transition. Reproduction…
Alvaro
  • 40,778
  • 30
  • 164
  • 336
4
votes
1 answer

Increasing the maximum number of connections per host of QtWebKit

Question: How can the default limit of 6 connections per host be increased in QtWebKit? Use case: I've multiple QtWebKit (QWebView) panes displayed by a PySide application. (PyQt would also work the same way.) The default connection limit of 6…
fviktor
  • 2,861
  • 20
  • 24
4
votes
3 answers

-Webkit-scroll bar + overflow + JQuery scrollTop returns always zero

I've been working on this bug whole day, and couldn't solve it. Have a JQuery scrollTop animation script, that detects $(window).scrollTop() value and do some animation and if click on button scrolling back to top. $(this).click(function() { …
Cam
  • 1,909
  • 6
  • 19
  • 23
4
votes
1 answer

Find the iframe that called a function in its parent

I have several iframes on a page that display ads unicorns/bacon to users. Because its not possible to detect an iframe's domready event via the parent (please let me know if this isn't true) I have some initialization-code in each iframe like…
David Murdoch
  • 87,823
  • 39
  • 148
  • 191
4
votes
2 answers

Javascript events for gestures in Webkit on Mac?

Is it possible to get gesture events, such as a 3 finger swipe back, on Webkit on the Mac desktop in Javascript? I did a few Google searches and couldn't find anything. Otherwise, I guess I could pass them from Cocoa to a WebView. I am…
John Wright
  • 2,418
  • 4
  • 29
  • 34