webkit

Google Chrome Folder Drag and Drop Support

in Google Chrome 7 Folder drag and drop has been added click-here, Can any one show demo code how is that possible? ...

Link anchors working only once in iPhone's browser

Hi, I'm making a mobile interface for my web app, and I'm trying to use anchor links to make navigation easier. My code is similar to this: <a href="#section2">Jump to section 2</a> ... lots of stuff here ... <h2 id="section2">Section 2</h2> The problem is that the link works only once. So if a user, using his iPhone, taps that link ...

C# WPF WebBrowser alternative

hi, 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 work... are there any easier to use alternatives? I'm looking for something very simple and light on the computer, it will host a webstor...

How to force WebKit (in QtWebView) to use actual windows for HTML elements?

There is windowful video playing plugin (with gstreamer inside). I want things to be placed atop of it. Can WebKit be forced to use real windows for non-embeds? Can in control their z-order? Currently even if I intersect two windowful embeds they get random z-order disregarding my "z-index" CSS property. ...

Glitching whilst using CSS transitions/translate on iPad when scrolling the page

Hi all, I've noticed whilst optimising animations for use on iPad using hardware acceleration, I seem to be coming across an issue that I haven't fully been able to resolve. If you are applying webkit transforms such as translate, although the animation runs great, if in the middle of an animation occuring the user scrolls the page, when...

how to remove the margin below a textarea inside a div wrapper (webkit)

<!DOCTYPE html> <html> <head> </head> <body> <div style="background-color:#f09;"> <textarea></textarea> </div> </body> </html> Result in Chrome: Result in FF: ...

webkit img 100% width issues

Sample Link I am using jquery cycle to slide through these images I am having issues in iOS webkit getting the #imagegallery img to scale 100% width. Any Ideas? ...

WebKit .NET Proxy Settings

Hi guys, I currently have a browser project which will allows users to select a proxy server. I'm using WebKit .NET by the way. However, when I tried changing my proxy settings in Internet Explorer(Registry), it doesn't seem to recognize the new settings. My other browsers seem to acknowledge the proxy, even safari. Anyone here tried ...

BrowserPlugin crash in android 2.1/2.2

I meet the same problem as below mentioned: http://code.google.com/p/android/issues/detail?id=6172 Since it's not answer yet, i move it here for help below is the description in detail: Segfault - Steps to reproduce the problem 1. Download eclair source code 2. make 3. make SampleBrowserPlugin 4. adb install out/target/product/gene...

How can I use HTML + Javascript to build a python GUI ?

I have been experimenting with Appcelerator Titanum yesterday and I think it's cool when it comes to Javascript. Python features on Appcelerator Titanum are so limited (can't use some modules for example). My question is How can I use html & javascript as a GUI tool for a real python application ? I am running windows 7 and i wa...

Is WebKit gaining any traction in non-web applications?

I spoke to the boss of a major music software company a few years ago. He told me that if they were going to start again from the ground up, they might look at WebKit for their UI. This totally surprised me. But I'm wondering if other folks are thinking and acting this way. Is webkit working its way in to truly non-web software? ...

android/webkit text-overflow: ellipsis not working

hello -- i am trying to get the following code to work on an androind 2.1 phone (HTC Sense UI): h1 { font-size: 14px; font-weight: bold; color: #FFF; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } however, the text-overflow property does not seem to work. has anybody else had this problem...

How can I get title & scripts inside a webpage using webkit + gtk ?

Hello Guys ! Here 's my code snippet import gtk, webkit window = gtk.Window() browser = webkit.WebView() url = "www.google.com" browser.open(url) Now I wanna get the web page title, script tags inside. So how can I do that ? The documentation is not clear at these points and I only found documentation for Objective-C and I am tryin...

Is it possible to use webkit css masks with SVG without an external file?

Webkit allows the use of an external SVG file as a mask for any HTML element. Ie: <img src="kate.png" style="-webkit-mask-image: url(circle.svg)"> Resulting in: (More information here: http://webkit.org/blog/181/css-masks/) Does anyone know if there's a way to do it without an external SVG file? More specifically, can it be done w...

HTML5 Web SQL DB - Maximum table size?

I'm part way through building a fairly complex HTML5 web app, that retrieves its data from a Web Service to populate the Web SQL databse. All was going well with the test data, then I tried using some real data (a table with around 10 cols and over 180,000 rows) and ran into some issues. I am sending the SQL responses in "chunks" of 50...

Webkit canvas drawImage() and canvas not-integer scale factor bug?

Hi. I've got a problem with canvas context drawImage() method if an image is drawn on a canvas that already has not-integer scale factor. It seems that such images are clipped in a weird way (sometimes the most right part of an image is clipped, sometimes the most bottom side, sometimes both). This problem appears at least in Google Chr...

32-bit Flash player in 64-bit Safari: how?

Yes, I know, WebKit uses a separate 32-bit process to play Flash and communicate with it. But how does Flash draw in a browser? In Mac OS X you cannot draw on a foreign window or reparent your one. So if the Flash player hosts in another process, how can it obtain the browser window's context (CGContextRef) and be drawn in it? ...

Can I force WebKit browsers to show the fragment identifier?

I'm using jQuery and the fragment identifier to create a state change depending on which part of a one-page site the user is currently looking at. I've finally got this to work but as both Safari and Chrome won't display the fragment identifier I can't make it into a variable and therefore the system breaks down. Is there a way to forc...

Webkit IDOMNode to JSObjectRef conversion

I need to convert IDOMNode to JSObjectRef somehow in the UIdelegate of my application. Any ideas ? Thanks. ...

Webkit transitionEnd event grouping

I have a HTML element to which I have attached a webkitTransitionEnd event. function transEnd(event) { alert( "Finished transition!" ); } var node = document.getElementById('node'); node.addEventListener( 'webkitTransitionEnd', transEnd, false ); Then I proceed to change its CSS left and top properties like: node.style.left = ...