webkit

Weird table-layout:fixed; "bug" on WebKit.

I'm building grid component for my own needs with sortable columns, rows, etc. Existing ones either were not suiting my needs or were too heavy. I just started on resizable columns when realy unexpectedly WebKit has hit my with unexplainable anomaly. While table-layout:fixed; worked perfectly on all other browsers (even IE) Safari/Chrome...

Detecting rendering completion in Webkit-based browsers (Chrome, Safari, etc)

From page Javascript, is there any way to know when a Webkit-based browser (particularly interested in recent Chrome, but a generic solution would be nice) has finished drawing the page, and/or has finished resolving all styles? Mozilla browsers have the MozAfterPaint event that's quite handy for this sort of thing. ...

Max image width in Mobile Safari? Getting unwanted downscaling on panos

I want to display very wide, panoramic images in Mobile Safari (iPhone, iPod, iPad). These work fine in OS X Safari and in other browsers, but on Mobile Safari there seems to be a limit on the maximum image width. Consider this web page: http://basepath.com/public/test1.html with this source: <!DOCTYPE HTML> <html> <head> <meta name ...

PyQt4.QtWebKit: QWebPage QWebView set timeout when load stop

Is there any way to say to a QWebPage or to a QWebView stop loading page if some sort of timeout is exceeded? Sultan ...

jquery ajax load() does not load internal css for webkit browsers

The css part is totally not reflected in the output (for webkit only, others ok), it is as if no css was defined, javascript works tho... Ajax call $("#output_area").load("abc.html"); abc.html sourcecode: (Angle brackets are omitted) !DOCTYPE HTML html head style type="text/css" css.. css.. ...

Is there any Android browser reference/documentation?

Is there any Android browser reference/documentation for Web app developers? Something like Apple's Safari Web Content Guide would be fantastic. I am exploring options to make Android Web app more native-like, so any suggestions would be appreciated. ...

Scaling problem with -webkit-transform with mobile safari on iPad

In the HTML page below, I am scaling a block with a -webkit-transform. The transform scales the block from its initial size to its double size. This works as expected with Safari, and Chrome on OSX. But, on the IPad (both the simulator and the device), the scaling start from a single point instead of the original size of the image. As...

jQuery Function Won't Work In Chrome :/

Could anyone help me with this problem? Code zip is here: (link taken down) I have made everything valid but Chrome still calculates the height of the elements completely wrong (9 in every 10 times...)... Well, technically it does. $(document).ready(function() { function resizeIt() { var extDiv = $('#exte...

Can I tell if a frame access will be cross-domain before performing it?

I am trying to find the DOM iframe or frame element for each of the frames in a window's frames collection. The fastest way to do this, I think, is to access the frame's frameElement property. This property is only available for a same-domain access, and returns undefined and prints an error message to the log in the cross-domain case. ...

Has anyone noticed an odd AJAX bug in WebKit whereby it ignores readyState 3?

I'm seeing an odd behavior in WebKit (on Android) where my server process is sending it a response that it needs to handle immediately (rather than wait for readyState 4). In Firefox and Safari this works as expected, but on webkit, not only does it not respond to the readyState but instead it appears to fire off a repeat request to the...

Log to Safari JavaScript Console

Is there any way to log to Safari's JavaScript console when running with the built-in JavaScript debugger? I've read the Firefox JavaScript logging question and hoping that there is a simple ("native") way to do it in WebKit/Safari. Thanks ...

webkit transforms CSS and overflow

Hi, I have a div, in which its contents are being transformed using webkit css transforms. Now the div has overflow: hidden;, but the contents after transformation keep showing up outside the div. Why is this? ...

Webkit and SVG filter support

I'm trying to get a complex SVG filter to produce results in Webkit. The filter is quite crowded as you will see below, but it renders a nice fractal-generated map, and does it well in Mozilla. I'd like to get Webkit to do the same. The Wikipedia page on browser support for SVG says that Webkit supports SVG filters on nightly builds, bu...

What are some rarely used but cool CSS properties?

I have been using border-radius and box-shadow effects of moz and webkit. //For rounded corners -moz-border-radius:4px; -webkit-border-radius:4px; //For shadow effect -moz-box-shadow:2px 2px 5px #000; -webkit-box-shadow:2px 2px 5px #000; Anyother unknown css effects of moz and webkit. EDIT: I have got some more css properti...

Memory issue - Does Webkit cache CSS styles of elements?

Hi I am running into a memory issue with webkit browsers on Windows with my current project. I will first describe the project I work on, then describe the actual issue. Please take my apologies for the long text, I hope it's not too much.. I am working on a project that lets you view a printed magazine online. For iPad support it is d...

WebKit Implementation with c#

I implemented webKit into a c# app i'm using and it works great except for one problem. Let me give a background of what i'm using it for. This is a program i've been building that will run multiple tests on multiple customer accounts, it loads each test into it's own dynamically created browser controls and such. However the issue i'm ...

chrome -webkit-border-radius -webkit-box-shadow inset

I am having a problem to use both inset box shadow and border radius. This works well with mozzila but with chrome -webkit-box-shadow extends the shadow outside the division. Here is the link to the website: www.rohanjain.in, the corners are rounded for mozzila but i have not enabled border-radius for webkit because of this bug. I am ...

Jqplot is working in Firefox but showing blank page in Safari and Chrome

I have used jqplot and build a graph with use of jQuery and Javascript http://server.dotsquares.com/cstik/chart.html which is working fine with Firefox but not showing anything in safari [edit Marcel K.: neither in Chrome]. please suggest me what extra code should i place to make it done. Thanks ...

Can you load flash into a webview being loaded by an android app

I am testing this on a Droid X with Android 2.2 and flash. Flash works great in the default android browser, but the webview does not seem to load it, even when linking to an external web hosted html file. ...

Changing the right-click menu in Webkit.NET

I'm using Webkit.NET to render a UI for my application, and I want to change the right-click context menu so it only does copying & selecting text, disabling the options to "Search with Google" and "Reload." I couldn't find any examples on the internet on doing this. How would I go about editing the context menu? ...