webkit

Android webkit.WebView and HTML5

Hi, is there any list which HTML5 features the WebView supports and which not? I am interested mainly in: 1) localStorage/sessionStorage 2) offline manifest 3) web sockets 4) web workers Prior there was lack of those features (http://www.mail-archive.com/[email protected]/msg60143.html), but in Android 2.1, first ...

Is the Webkit inspector (developer tools) a suitable replacement for Firebug yet?

The Safari & Chrome developer tools (webkit inspector) seem to have become quite advanced. Although I'm very used to Firebug and rely on it for development, I'm really flirting with the idea of trying to just make a complete switch to Chrome (since I browse almost exclusively with it anyway) and just learn to get use to it's web develope...

Setting width and height of images with jquery in webkit browsers

Hello! I have an image with mypic class I'm using the load event to set the width and height of this image: $(window).load(function() { //Here I calculate final w and h $('.mypic').css("width",w); $('.mypic').css("height",h); $('.mypic').height(h); $('.mypic').width(w); }); In firefox I have no problem at all...

Can webkit show flash banners?

I'm pretty sure the answer is no but I just wanted to confirm whether or not webkit can show flash banners. G-Man ...

Webkit opacity rendering

The text on the top has the opacity of 0.5. The other image has a color of #dddddd (hex). This is the code I am using: <p style="font:60px Arial;font-weight:bold;opacity:0.5">Hello!</p> <p style="font:60px Arial;font-weight:bold;color:#888">Hello!</p> The text on the top has jagged edges. I'm wondering why that is. ...

Webkit choking on rendering multiple text-shadow & box-shadow values with webkit-transition

CSS3 -webkit-transition is choking on multiple box-shadow values and text-shadow values. (Chrome & Safari) More specifically, I have two screnarios... (1) I have text has a document heading that has three text-shadows (for appearance of depth). I am also using the -webkit-transition rule to change the color of the text-shadow on hover ...

WebKit makefile problem

Hi I'm trying to build WebKit and I get following error: make: *** No rule to make target `ArrayPrototype.lut.h', needed by `all'. Stop. To me, it looks like makefile has a rule for ArrayPrototype.lut.h (I'm probably wrong). Here's an extract from the makefile: .PHONY : all all : \ ArrayPrototype.lut.h \ chartables.c \ D...

jQuery: slow 'Webkit' performance - function .hover

Hey. I'm trying to get this script to work smoothly in webkit (Safari, Chrome, newest versions). It runs absolutely fine in Firefox. This code is called in the document.ready function: $('#noScript').remove(); $("#content div.wrapper, #top div.wrapper").hide().stop().fadeIn({duration: 2000, queue: true }); $('#social a') .children('s...

CSS link display issue in Chrome and Safari

I'm having a CSS issue that only occurs in Safari and Chrome. I have a set of styles for links in the content of a site that I'm working on. Visited links should appear a different colour and with a dotted bottom border. In Safari and Chrome the visited links lack the bottom border though, although all other styles are applied. Does anyo...

Python + webkit + gtk on windows

hello there i am trying to do this script: PY WYSIWYG and it says i need gtk and webkit. i think i got the right stuff is this what i need: gtk WEBKIT so i downloaded the webkit but i got a folder but installer or install information do i move it into the python folder or what do i do Thanks ...

How to check-out particular version of webkit with svn?

I want to check out this version of webkit. Any idea how can I do it through svn? http://trac.webkit.org/browser/releases/WebKitGTK/webkit-1.2.0 Is it possible to download only code and no .svn folders? ...

what is the best c++ wrapper to webkit ? for staticlly linking (not QWebkit)

i need to statically embed web browser in c++ , webkit is good idea , is there any easy c++ wrapper around this kit , i know the Qt version but i can only dynamically link it and its no good for me. ...

WebKit .Net RaiseEvent/Click equivalent

I'm experimenting with the WebKit .Net component in an application. Usually with the standard WebBrowser component I can select an element by id and then raise an event on it using the RaiseEvent method or, for clicks, simply use the Click method. However, I can't seem to find similar functionality in the WebKit browser - how should I go...

In which case webpage loads without external stylesheet in chrome or safari ?

In which case webpage loads without external stylesheet in chrome or safari ? I am talking about a case in which webbrowser first loads webpage without stylesheet and then redraw it with css once it becomes available. It would be great If you give me a small html page with external stylesheet, which always loads webpage without externa...

Why Chrome does not show CSS3 ::-webkit-scrollbar scrollbar for iframe?

Why Chrome does not show CSS3 ::-webkit-scrollbar scrollbar for iframe? Demo http://jsfiddle.net/laukstein/C9s3P/ <iframe scrolling="yes" style="overflow-x:hidden; overflow-y:scroll; width:150px; height:50px;" src="http://en.wikipedia.org/wiki/Web_browser"&gt;&lt;/iframe&gt; CSS ::-webkit-scrollbar{ width:0.8em; height:0.8em...

How much HTML5 android browser supports ?

How much HTML5 android 2.2 's browser supports? Is there any place/doc where I can find that what all HTML5 tags are supported by android 2.2 browser. Thanks for help. ...

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 should only contain numbers. In Chrome and Safari however, using number inputs displays spin buttons at the right side of the field, which looks l...

Launch Webkit Nightly in fullscreen mode

Hey, I am using Webkit Nightly because i'm working on some new HTML5 features. I would like to look at the application full screen, without the window chrome. Other browsers have F11 and other buttons to go fullscreen, but webkit doesn't. Is there a way I can launch it in fullscreen mode? Dennis ...

Chrome 7 interprets CSS percentage relative positioning differently from Chrome 6 (and other browsers)

My Chrome install updated itself last night (without telling or asking me!) It now interprets CSS percentage relative positioning differently to yesterday. Suppose I have: <body> <div class="everything"> <div class="centerMe"> Center me! </div> </div> </body> And this CSS: body { width: 100%; height: 100%; ma...

jQuery ajax problems with webkit browsers

Hello I'm adding some ajax features to a site and I have very strange problem. On webkit browsers the ajax request aren't working. I have no idea where is the problem. I noticed that if I leave only one ajax request the Safari(windows) is doing it right, but that its not what is happening to the Safari(Mac) and Chrome(windows). The javas...