webkit css support which browsers?
webkit css like -webkit-border-radius ..etc are supported in which browsers( other than safari) ? ie6? ie7? ie8? ...
webkit css like -webkit-border-radius ..etc are supported in which browsers( other than safari) ? ie6? ie7? ie8? ...
Anyone have REALLY specific and accurate information about which libraries I need in order to compile both libqt and wkhtmltopdf in Solaris? ...
I'm looking for a Python library that's suitable, with DOM access too. I don't mind if the flash transparency doesn't carry over. PyQT's license isn't compatible with the project, and PySide isn't compiled cross-platform yet. Any thoughts? ...
Hi All, I've just finished planning for a web-dev app, and I need to build in a browser control to preview pages in. But, I won't use I.E. I want to use WebKit (this is for personal use), and I have searched all over google (and webkit's site) but am somewhat confused as to what I need to download in order to use the webkit rendering en...
Is would guess that there is already a webkit/gecko based command line app (maybe even working as a server speed up to rending of multiple pages) which is already doing this? ...
Hi all, I'm very new to XCode so please excuse my ignorance. I've spent a day now trying to figure out what I'm doing wrong, following several tutorials. I've got a iPhone/Window project setup in XCode. I've got a UITabBar and a UIWebView, when a tab is selected the UIWebView navigates to a particular URL and everything is working great...
Hello everyone, I'm working on implementing a virtual keyboard for a QtWebKit based browser. I'm having a lot of difficulty understanding how QtWebKit paints the controls within the actual page. Initially I thought they were QLineEdit instances, but they are not. Diving into implementation it appears that the glue code between Qt and Web...
I am trying to load an SWF inside a WebView in my cococa app, it works fine when I load an HTML which references the SWF. But i'd like do load the flash file alone, with no HTML. Is that possible?? ...
I'm trying to extract not just the browser and its version number but also the rendering engine and its version number from common user-agent strings. Most browsers report this just fine, e.g.: "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)" "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.12) Gecko/200907061...
It's pretty well known by now that you can style scrollbars using the webkit specific CSS tags (::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment, etc. ). However, I've noticed that I cannot style the scrollbars attached to iFrames. Question: Is there a way to access and style the scrollbars on the iFr...
I want to access properties and call methods of an Objective-C object that was returned to JavaScript host as property of exposed object ([windowScriptObject setValue:self forKey:@"a"]): - (id) valueForUndefinedKey:(NSString*) key { if ( [key isEqualToString:@"b"] ) { MyObject* obj = [ [ MyObject alloc ] init ]; return obj; ...
Hi there, I'm having an issue with the visualization of my site on Google Chrome and Safari (both using Webkit rendering engine), the site is built upon Symfony framework, version 1.1 (unmaintained version). When navigating to the site, this shows an error 500 when loading a page, I read somewhere that it might be related to Symfony cac...
There are tutorials for using a webkit view inside a cocoa application to achieve skinnable contents, but what would I do if I wanted to use webkit to create custom, skinnable windows? Examples would be dashboard widgets, or BowTie Beware, I'm a noob. ...
I'm writing a minimal web browser using Cocoa. I've been struggling in my attempt to create an address bar ( basically an NSComboBox in which the drop down contains previously visited URLS ). The main issue is that the backForwardList attribute of my WebView object is updated at unpredictable times. For instance, if I select a url fro...
I have this code: <script type="text/javascript"> $(document).ready(function() { $("#iframeId").contents().find("body").append($("#test")); }); </script> <iframe id="iframeId" name="iframeId" src="about:blank" ></iframe> <div id="test"> Text </div> And i need to append whole object to iframe (not only th...
I am using a sticky footer like described in: http://stackoverflow.com/questions/42294/how-do-you-get-the-footer-to-stay-at-the-bottom-of-a-web-page http://ryanfait.com/resources/footer-stick-to-bottom-of-page/ I have a paragraph with a link that I want to be at the bottom of the page, so I put it in .footer. The problem is that the...
I'm working on a website for iphone using dashcode. But i don't know how to add a new html page to the 'site'. I could use stackLayout but it takes so much time to load the 'index.html' since it has all the stackLayout's views in it. enlightenment needed :) ...
This works div { -moz-border-radius: 5px 5px 0 0; border:1px solid #000; margin:30px; } This does not work table { -moz-border-radius: 5px 5px 0 0; border:1px solid #000; margin:30px; } Does anyone know how to use -moz and -webkit to work on tables? ...
Greetings everyone, I'm trying to write a simple log viewer using Qt4's WebKit port/implementation. My HTML code looks like this: http://pastie.org/613296 More specifically, I'm trying to find out how to call the add_message() function which is defined in the <script> section in the HTML document from my C++ code. // Doesn't work...
I have a Cocoa app that I'm trying to write which displays a webpage. This webpage has an embedded quartz composition in the background that plays and works when in Safari, but it does show in my Cocoa application (it just shows the missing plugin icon in the background instead). The weird thing is that it works on another computer that...