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
131
votes
10 answers

Disabled input text color on iOS

The simple HTML below displays differently in Firefox and WebKit-based browsers (I checked in Safari, Chrome and iPhone). In Firefox both border and text have the same color (#880000), but in Safari the text gets a bit lighter (as if it had some…
Incidently
  • 4,249
  • 3
  • 23
  • 30
130
votes
5 answers

"Unsafe JavaScript attempt to access frame with URL..." error being continuously generated in Chrome webkit inspector

Chrome (or any other webkit browser) throws a ton of these "Unsafe JavaScript attempt to access frame with URL..." when working with the Facebook API for example. It doesn't interfere with actual operation, but it does make the javascript console…
Neil Sarkar
  • 6,834
  • 8
  • 32
  • 30
127
votes
10 answers

Chrome/jQuery Uncaught RangeError: Maximum call stack size exceeded

I am getting the error "Uncaught RangeError: Maximum call stack size exceeded" on chrome. here is my jQuery function $('td').click(function () { if ($(this).context.id != null && $(this).context.id != '') { foo($('#docId').val(),…
Andy
  • 10,412
  • 13
  • 70
  • 95
127
votes
12 answers

Add custom headers to WebView resource requests - android

I need to add custom headers to EVERY request coming from the WebView. I know loadURL has the parameter for extraHeaders, but those are only applied to the initial request. All subsequent requests do not contain the headers. I have looked at all…
Ray
  • 1,413
  • 2
  • 10
  • 12
126
votes
4 answers

Rotate and translate

I'm having some problems rotating and positioning a line of text. Now it's just position that works. The rotation also works, but only if I disable the positioning. CSS: #rotatedtext { transform-origin: left; transform: rotate(90deg); …
Sera
  • 1,367
  • 2
  • 8
  • 8
125
votes
5 answers

How to set the style -webkit-transform dynamically using JavaScript?

I want to change the -webkit-transform: rotate() property using JavaScript dynamically, but the commonly used setAttribute is not working: img.setAttribute('-webkit-transform', 'rotate(60deg)'); The .style is not working either... How can I set…
rymn
  • 1,499
  • 2
  • 10
  • 14
124
votes
12 answers

Disabling user selection in UIWebView

I have an app where I load content to a UIWebView and present this. I cannot disable user interaction completely because I want the user to be able to click links. I just need to disable user selection. I found somewhere in the Internets that you…
Engin Kurutepe
  • 6,719
  • 3
  • 34
  • 64
121
votes
6 answers

CSS3 Continuous Rotate Animation (Just like a loading sundial)

I am trying to replicate an Apple style activity indicator (sundial loading icon) by using a PNG and CSS3 animation. I have the image rotating and doing it continuously, but there seems to be a delay after the animation has finished before it does…
Gcoop
  • 3,372
  • 4
  • 26
  • 35