WebKit is an open source web browser engine that powers Google Chrome, Apple Safari, and several mobile browsers including the pre-installed browsers for Android, iOS, RIM Blackberry, Symbian and WebOS.
217
votes
6answers
34k views
WebKit issues with event.layerX and event.layerY
I just noticed that I get tons of deprecated warnings in the latest (canary) build of Chrome.
event.layerX and event.layerY are broken and deprecated in WebKit. They will be removed from the ...
60
votes
4answers
22k views
“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 ...
60
votes
10answers
61k views
Submitting a form on 'Enter' with jQuery?
I have a bog-standard login form - an email text field, a password field and a submit button on an AIR project that's using HTML/jQuery. When I hit Enter on the form, the entire form's contents ...
60
votes
20answers
86k views
Get real image width and height with JavaScript in Safari/Chrome?
I am creating a jQuery plugin.
How do I get real image width and height with Javascript in Safari?
Following works with Firefox 3, IE7 and Opera 9:
var pic = $("img")
// need to remove these in of ...
51
votes
6answers
30k views
Detect rotation of Android phone in the browser with javascript
I know that in Safari on an iPhone you can detect the screen's orientation and change of orientation by listening for the onorientationchange event and querying window.orientation for the angle.
Is ...
49
votes
4answers
2k views
How does facebook rewrite the source URL of a page in the browser address bar?
Go to http://www.facebook.com/facebook?v=wall, then click on the info tab. The content will be loaded, and the address bar now becomes http://www.facebook.com/facebook?v=info but the webpage didn't ...
37
votes
9answers
26k views
Is there an embeddable Webkit component for Windows / C# development?
I've seen a few COM controls which wrap the Gecko rendering engine (GeckoFX, as well as the control shipped by Mozilla - mozctlx.dll). Is there a wrapper for Webkit that can be included in a .NET ...
36
votes
9answers
30k views
How to draw vertical text with CSS cross-browser?
i want to rotate a single word of text by 90 degrees cross-browser (>= ie6, >= ff2, webkit).
33
votes
5answers
21k views
How do you handle oncut, oncopy, and onpaste in jQuery?
The jQuery documentation says the library has built-in support for the following events: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, ...
31
votes
12answers
29k views
Is it possible to Embed Gecko or Webkit in a Windows Form just like a WebView?
I'd love to know if there is such thing as a Gecko.NET ;) I mean, just like we can embed a WebView and that is an "instance" of IE7 inside any Windows Forms application (and tell it to "navigateto ...
29
votes
2answers
15k views
Hiding textarea resize handle in Safari
I'm using textarea components in my application, and I control their height dynamically. As the user types, the height is increased whenever there is enough text. This works fine on IE, Firefox, and ...
26
votes
3answers
4k views
wtf is WTF? (in WebKit code base)
I downloaded Chromium's code base and ran across the WTF namespace.
namespace WTF {
/*
* C++'s idea of a reinterpret_cast lacks sufficient cojones.
*/
template<typename TO, ...
24
votes
11answers
9k views
iPad/iPhone browser crashing when loading images in Javascript
I'm trying to build an image gallery in Safari that mimics the iPad photo app. It works perfectly, except that once I load more than 6MB or so worth of images either by adding them to the DOM or ...
23
votes
5answers
6k views
How to embed a browser object, other than IE<n>, in a Delphi application
Using the default TWebBrowser makes things easy to embed a web browser. Unfortunately the one that comes in by default is IE<n>.
I'm wondering how does one integrate a Gecko or WebKit one.
...
21
votes
3answers
3k views
Disable webkit's spin buttons on input type=“number”?
I have a site which is primarily for mobile users but desktop too.
On Mobile Safari, using <input type="number"> works great because it brings up the numerical keyboard on input fields which ...
21
votes
4answers
18k views
What JavaScript events are available to WebKit on Android?
I'm building a mobile web app targeting Android users. I need to know what JavaScript events are available to me. I have been able to make the following work, but not terribly reliably:
click
...
20
votes
9answers
1k views
who wrote 250k tests for webkit?
assuming a yield of 3 per hour, that's 83000 hours. 8 hours a day makes 10,500 days, divide by thirty to get 342 mythical man months. I call them mythical because writing 125 tests per person per week ...
19
votes
2answers
379 views
QWebView undersampled SVG rendering
I'd like to use QWebView for an SVG thumbnailing job because it supports filters (unlike QSvgRender which only supports SVG Tiny 1.2). It seems to work quite well except for font rendering but that ...
19
votes
8answers
6k views
Headless, scriptable Firefox/Webkit on linux?
I'm looking to automate some web interactions, namely periodic download of files from a secure website. This basically involves entering my username/password and navigating to the appropriate URL.
I ...
18
votes
4answers
860 views
Start mobile browsers with webkit remote debugging ON
At Google I/O 2011: Chrome Dev Tools Reloaded, Paul Irish and Pavel Feldman introduced new remote debugging feature — which was in passing included into webkit.
--
This is great news, particularly ...
17
votes
4answers
28k views
Unsafe JavaScript attempt to access frame with URL
I am getting below error when i try to set a hash value to the parent url from iframe which contains another domain url.
Unsafe JavaScript attempt to access frame with URL "URL1" from frame with URL ...
16
votes
2answers
6k views
How do I get the WVGA Android browser to stop scaling my images?
I'm designing an HTML page for display in Android browsers. Consider this simple example page:
<html>
<head><title>Simple!</title>
</head>
<body>
<p><img ...
16
votes
5answers
1k views
Canvas Image Smoothing
What is
ctx.mozImageSmoothingEnabled = false;
for webkit(or other browsers)? I need it to remove anti-aliasing because i am trying to get a pixelized effect to an image. With anti-aliasing, it ...
16
votes
3answers
7k views
Webkit JavaScript Reference
For Gecko there's Mozilla Developer Center
For IE there's MSDN.
For webkit there's...Apple Developer Connection?
There are a couple of JavaScript related documents on ADC, but nothing as ...
16
votes
8answers
34k views
How do I print an IFrame from javascript in Safari/Chrome
Can someone please help me out with printing the contents of an IFrame via a javascript call in Safari/Chrome.
This works in firefox:
$('#' + id)[0].focus();
$('#' + id)[0].contentWindow.print();
...
16
votes
3answers
2k views
Is it possible to render web content over a clear background using WebKit?
I'm trying to gauge the possibility of a patch to WebKit which would allow all rendered graphics to be rendered onto a fully transparent background.
The desired effect is to render web content ...
15
votes
2answers
286 views
Evenly distributed height of child elements with CSS
Assume you need to present a list of colors to the user. The colors must be displayed in a list with a fixed height, with each color occupying an equal fraction of that height.
Here is what it should ...
15
votes
6answers
2k views
How can I get control of Google App Engine caching behavior in WebKit (etags gone crazy)?
Situation: running a Google App Engine site with my static content's default_expiration set to "14d"
Problem: in Chrome and Safari, visiting a URL (not reloading, just putting the cursor in the ...
15
votes
5answers
331 views
Do I still need to test rendering in both Chrome and Safari if they both use Webkit?
Is it necessary to test the rendering of my website in both Chrome and Safari despite the fact that both browsers implement the Webkit rendering engine underneath?
Is this a cop out by developers or ...
15
votes
7answers
3k views
HTML book-like pagination
How can I split the content of a HTML file in screen-sized chunks to "paginate" it in a WebKit browser?
Each "page" should show a complete amount of text. This means that a line of text must not be ...
15
votes
4answers
1k views
How can I equalize the heights of text input fields?
What is the best way to equalize the height of my <select..> elements and my <input type="text"..> elements? It's proving difficult because of differences in box-sizing models.
Google ...
15
votes
4answers
7k views
14
votes
4answers
833 views
Webkit and jQuery draggable jumping
As an experiment, I created a few div's and rotated them using CSS3.
.items {
position: absolute;
cursor: pointer;
background: #FFC400;
-moz-box-shadow: 0px 0px ...
14
votes
5answers
5k views
iphone webkit css animations cause flicker
This is the iphone site:
http://www.thevisionairegroup.com/projects/accessorizer/site/
After you click "play now" you'll get to a game. The guns will scroll in. You can scroll the purse and ...
14
votes
15answers
31k views
Safari/Chrome (Webkit) - Cannot hide iframe vertical scrollbar
I have an iframe on www.mydomain.com that points to support.mydomain.com (which is a CNAME to a foreign domain). I automatically resize the height of my iframe so that the frame will not need any ...
14
votes
7answers
4k views
HTML5 Local Storage of audio element source - is it possible?
I've been experimenting with the audio and local storage features of html5 of late and have run into something that has me stumped.
I'd like to be able to cache or store the source of the audio ...
14
votes
5answers
3k views
I think I found a bug in WebKit (or jQuery), can others confirm? [closed]
I believe I have found a bug in WebKit. It involves outerWidth(true) (and I assume outerHeight(true) ) in jQuery.
In every browser but Safari and Chrome, the third box is 200. In Safari and Chrome, ...
14
votes
10answers
2k views
Does Google Chrome display pages the same as Safari?
Given that Chrome and Safari use webkit has anyone yet found anything that renders differently on Chrome than Safari? Is there any reason at the moment to test sites on both, or would testing Safari ...
13
votes
3answers
1k views
How does the paste image from clipboard functionality work in Gmail and Google Chrome 12+?
I noticed a blog post from Google that mentions the ability to paste images directly from the clipboard into a Gmail message if you're using the latest version of Chrome. I tried this with my version ...
13
votes
9answers
9k views
Does Chrome have buil-in speech recognition for <input type=“text” x-webkit-speech speech />?
I'm wondering how
<input type="text" x-webkit-speech speech />
leveraging speech recognition technology as in this example:
http://slides.html5rocks.com/#slide24
Is there a speech ...
13
votes
7answers
3k views
C# WPF WebBrowser alternative
I need a web browser inside my .NET 3.5 application and I don't want to use the default webbrowser (because it feels buggy and slow). I tried Chris Cavanagh's chromium but I just couldn't get it to ...
13
votes
1answer
1k views
How to enable -webkit-animation/transition-property for :before and :after pseudo elements?
How to enable -webkit-animation for :before and :after pseudo elements?
You can see in http://jsfiddle.net/4rnsx/ that it is not working for :before and :after.
And here I am trying to enable this ...
13
votes
7answers
8k views
Is there an equivalent apple-touch-startup-image for the IPAD?
For web apps you can set the startup screen with apple-touch-startup-image
What about for iPads?
13
votes
2answers
5k views
How to embed WebKit into my C/C++/Win32 application?
The solutions I have found are irrelevant:
someone used WebKit in a Delphi project
someone used it with Java
there is QtWebKit (about:blank demo app takes 44 megs)
.Net port of it
GTK+ port
I need ...
13
votes
6answers
10k views
How can my iPhone Objective-C code get notified of Javascript errors in a UIWebView?
I need to have my iPhone Objective-C code catch Javascript errors in a UIWebView. That includes uncaught exceptions, syntax errors when loading files, undefined variable references, etc.
This is for ...
12
votes
3answers
200 views
Pure CSS triangle with semi-transparent border. Possible?
Is it possible to draw an arrow that has semi-transparent border around it just using css?
Heres a fiddle of my effort so far:
http://jsfiddle.net/calebo/fBW4u/
CSS:
.ui-overlay {
...
12
votes
1answer
5k views
jQuery 1.7 is *still* returning the event.layerX and event.layerY error in Chrome
Update: I worked it out - it was a Chrome Extension loading its own version of jQuery (whoops!)...
What am I doing wrong? Am I misunderstanding the problem or is it something else entirely?
On my ...
12
votes
1answer
2k views
What do setUseWideViewPort() and setLoadWithOverviewMode() precisely do?
I am disappointed at the lack of documentation of WebView and related stuff.
(unless you think the following is propert documetation)
public void setLoadWithOverviewMode
(boolean overview)
...
12
votes
3answers
7k views
Android Web App : Position:fixed broken?
I'm in the process of developping a Web Application for mobiles. I
went with web applications because to me it seems a winning situation
having to develop one application that could run also on iPhone ...
12
votes
4answers
4k views
HTML5 <audio> Safari live broadcast vs not
I'm attempting to embed an HTML5 audio element pointing to MP3 or OGG data served by a PHP file . When I view the page in Safari, the controls appear, but the UI says "Live Broadcast." When I click ...