active questions tagged webkit - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T05:54:10Z http://stackoverflow.com/feeds/tag/webkit http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1811297/linking-with-so-files-webkit 0 Linking with .so files (webkit) John Cosgrove 2009-11-28T01:53:32Z 2009-11-28T02:39:12Z <p>Hi,</p> <p>I'm trying to create a program that uses some of the code from WebKit/GTK+. Specifically, I want to load a string, use WebKit's parser to construct a DOM tree and then iterate over that tree. </p> <p>I'm trying to use a class called HTMLDocument. WebKit/GTK+ doesn't expose this as part of its API and I'm running into some trouble linking against it. </p> <p>I'm able to build WebKit/GTK+ normally, which gives me a file called: libwebkit-1.0.so. My program is:</p> <pre><code>#include &lt;iostream&gt; #include &lt;WebCore/config.h&gt; #include &lt;WebCore/html/HTMLDocument.h&gt; using namespace WebCore; int main() { String title = "test"; RefPtr&lt;HTMLDocument&gt; d = HTMLDocument::create(0); d-&gt;open(); d-&gt;write("&lt;!doctype html&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;" + title + "&lt;/title&gt;&lt;/head&gt;&lt;body&gt;&lt;/body&gt;&lt;/html&gt;"); } </code></pre> <p>This compiles fine (I'm using the same include directives used by webkit to build), but results in linking errors. </p> <pre><code>...test_doc.cpp:18: undefined reference to `WebCore::String::String(char const*)' ...test_doc.cpp:21: undefined reference to WebCore::Document::open(WebCore::Document*)' ...(similar for every function I use) </code></pre> <p>If I run:</p> <pre><code>nm -C .libs/libwebkit-1.0.so | grep 'WebCore::Document::open' </code></pre> <p>I see:</p> <pre><code>003b1830 T WebCore::Document::open(WebCore::Document*) </code></pre> <p>which seems to indicate that the function is available. I have a reasonable amount of C++ experience, but not much experience with linking files under Linux. </p> <p>I'm not expecting this exact problem to be solved, but I'm hoping someone can correct me if I have conceptual problems. My main question is why I see "undefined reference" errors when I'm linking with an .so file that lists that function as being defined. Is another file or build step needed?</p> <p>Thank you very much. </p> <p>Using: Ubuntu 9.10 g++ 4.4.1</p> <p>g++ is invoked with:</p> <pre><code>g++ --debug -DHAVE_CONFIG_H -I. `pkg-config --cflags libsoup-2.4` \ -DBUILDING_CAIRO__=1 -DBUILDING_GTK__=1 -DWTF_CHANGES -DWTF_USE_ICU_UNICODE=1 \ -DNDEBUG -I./WebCore -I./WebCore/accessibility -I./WebCore/bindings/js \ -I./WebCore/bridge -I./WebCore/bridge/c -I./WebCore/css -I./WebCore/dom \ ...many more webkit include directories... -DDATA_DIR=\"/usr/local/share\" \ test_doc.cpp -o test_doc.out \ ./webkit-1.1.15.3/.libs/libwebkit-1.0.so </code></pre> <p>(I get the same result with -L/path/to/lib -lwebkit-1.0)</p> http://stackoverflow.com/questions/377215/webkit-support-for-delphi 8 WebKit support for Delphi Charlie Somerville 2008-12-18T08:35:36Z 2009-11-28T02:28:46Z <p>Is there a way to embed the WebKit engine into a Delphi application?</p> http://stackoverflow.com/questions/1751328/is-it-possible-to-enable-the-webkit-javascript-inspector-in-mobile-web-browsers 1 Is it possible to enable the WebKit JavaScript Inspector in mobile web browsers? Bamerza 2009-11-17T19:54:42Z 2009-11-27T22:39:11Z <p>I would love to use the Web Inspector development tools that come with webkit on a mobile browser. Does anyone know if it is possible to enable web inspector on say the Android web browser ??</p> http://stackoverflow.com/questions/1809907/android-webkit-in-background 1 Android Webkit in background Faisal Abid 2009-11-27T17:37:41Z 2009-11-27T18:38:45Z <p>Is there a way to get webkit running in the background , or even small enough for the user not to know that the webkit browser is running? Basically i want to use this to have java and javascript integration while using the android UI. </p> http://stackoverflow.com/questions/1038758/can-you-write-cocoa-apps-with-html-css-and-javascript 1 Can you write Cocoa apps with HTML/CSS and Javascript? gargantaun 2009-06-24T14:31:50Z 2009-11-27T02:45:04Z <p>I was thinking, would it be feasible to create a Cocoa app that is essentially just a an interface with a web view? Or is there some serious limitation when doing something like this?</p> <p>If it is "feasible", would that also mean that you could do the same for Windows applications? </p> http://stackoverflow.com/questions/1320851/how-to-create-a-thumbnail-of-a-website 2 How to create a thumbnail of a website? Lothar 2009-08-24T07:06:12Z 2009-11-26T14:13:34Z <p>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?</p> http://stackoverflow.com/questions/1803855/can-i-access-keychain-from-a-webapp-javascript-on-the-iphone 0 Can I access keychain from a webapp (javascript) on the iPhone ? N. Benzini 2009-11-26T14:07:02Z 2009-11-26T14:07:02Z <p>The question is pretty much in the title ;-)</p> <p>Do you know if there is a webkit API for reading/writing from the iPhone keychain ? That is, I would need to access the keychain from a webapp.</p> <p>Thanks in advance !</p> http://stackoverflow.com/questions/1801321/droid-browser-causing-havoc-on-my-site 4 Droid browser causing havoc on my site Dan Sinker 2009-11-26T03:02:05Z 2009-11-26T07:28:02Z <p>I have a mobile-optimized site that uses a pretty simple trick of serving a different page based on browser width. This worked great until the Droid came along, with its very high pixel density screen. </p> <p>I understand that the default setting of the screen is 800 pixels wide (significantly wider than my width detect script, which is making its decision of which page to serve at 500 pixels). However, the Droid browser seems to arbitrarily decide to report a smaller width, and thusly serve the smaller-width page. But not in a predictable manor. </p> <p>As a result, the experience for an end user is completely random: sometimes they see a wide page they have to zoom in on, sometimes they see a page that's scaled just right to their window.</p> <p>I have written a small script that reports the screen width and, even when forcing the viewport to a specific pixel size, I have had some users still report an 800 pixel width (even in vert orientation) and others report the fixed width. </p> <p>Is there a way of definitively setting the width for the Droid's browser? Is this a bug? Am I just simply not thinking something through? Frankly, it's starting to feel like designing in a dark cave with my hands tied behind my back.</p> http://stackoverflow.com/questions/1795922/html-printing-using-gecko-or-webkit-engine 0 HTML Printing using Gecko or Webkit engine Marc Vitalis 2009-11-25T10:11:54Z 2009-11-26T05:58:07Z <p>Is there a way where I can directly print html file or url without invoking any dialogs in .NET?</p> http://stackoverflow.com/questions/1780697/z-index-div-hover-overlay-issues-with-windows-webkit-safari-opera-etc 0 Z-Index div hover overlay issues with [windows] Webkit (Safari, Opera, etc) pschorr 2009-11-23T01:28:49Z 2009-11-23T02:25:36Z <p><strong>Edit: This ONLY occurs on Windows Webkit, does not occur on Macs</strong></p> <p>I am trying to set up a grid with fixed sized cells with a background image. When you hover, the background image and height of cell is changed/increased and overlays the row below it. </p> <p>I tried a few ways to create this idea and came down to that a table with z-index applied to the row would work the best. </p> <p>My issue, as the title says, is that I have this working in IE/FF, but for whatever reason webkit doesn't seem to care about the z-index on the row settings. </p> <p>I should note that inside each grid is the jquery cycle plugin which I don't think affects anything, but I'm having some issues with pausing the cycle plugin in webkit as well.</p> <p><strong>html of the table and two rows</strong></p> <pre><code>&lt;div id="girlcontent"&gt; &lt;table class="girltable" cellpadding="0" cellspacing="0"&gt; &lt;tr&gt; &lt;td class="girlrow" valign="top"&gt; &lt;div class="girlbox"&gt; &lt;div class="girlplace" id="girlcycle"&gt; &lt;img src="img/girls/1a.jpg" alt="image" /&gt; &lt;img src="img/girls/1b.jpg" alt="image" /&gt; &lt;img src="img/girls/1c.jpg" alt="image" /&gt; &lt;/div&gt; &lt;div id="gctext"&gt; &lt;div class="girltext"&gt;Butters&lt;/div&gt; &lt;div class="girltextsm"&gt;info&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/td&gt; &lt;td class="girlrow" valign="top"&gt; &lt;div class="girlbox"&gt; &lt;div class="girlplace" id="girlcycle2"&gt; &lt;img src="img/girls/1g.jpg" alt="image" /&gt; &lt;img src="img/girls/1c.jpg" alt="image" /&gt; &lt;img src="img/girls/1d.jpg" alt="image" /&gt; &lt;/div&gt; &lt;div id="gctext2"&gt; &lt;div class="girltext"&gt;CandyCanes&lt;/div&gt; &lt;div class="girltextsm"&gt;info&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/td&gt; &lt;td class="girlrow" valign="top"&gt; &lt;div class="girlbox"&gt; &lt;div class="girlplace" id="girlcycle3"&gt; &lt;img src="img/girls/1e.jpg" alt="image" /&gt; &lt;img src="img/girls/1b.jpg" alt="image" /&gt; &lt;img src="img/girls/1f.jpg" alt="image" /&gt; &lt;/div&gt; &lt;div id="gctext3"&gt; &lt;div class="girltext"&gt;Tandy&lt;/div&gt; &lt;div class="girltextsm"&gt;info&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/td&gt; &lt;td class="girlrow" valign="top"&gt; &lt;div class="girlbox"&gt; &lt;div class="girlplace" id="girlcycle4"&gt; &lt;img src="img/girls/1b.jpg" alt="image" /&gt; &lt;img src="img/girls/1e.jpg" alt="image" /&gt; &lt;img src="img/girls/1g.jpg" alt="image" /&gt; &lt;/div&gt; &lt;div id="gctext4"&gt; &lt;div class="girltext"&gt;Dancer&lt;/div&gt; &lt;div class="girltextsm"&gt;info&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="girlrow2" valign="top"&gt; &lt;div class="girlbox"&gt; &lt;div class="girlplace" id="girlcycle5"&gt; &lt;img src="img/girls/1f.jpg" alt="image" /&gt; &lt;img src="img/girls/1e.jpg" alt="image" /&gt; &lt;img src="img/girls/1g.jpg" alt="image" /&gt; &lt;/div&gt; &lt;div id="gctext5"&gt; &lt;div class="girltext"&gt;Sam&lt;/div&gt; &lt;div class="girltextsm"&gt;info&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/td&gt; &lt;td class="girlrow2" valign="top"&gt; &lt;div class="girlbox"&gt; &lt;div class="girlplace" id="girlcycle6"&gt; &lt;img src="img/girls/1d.jpg" alt="image" /&gt; &lt;img src="img/girls/1e.jpg" alt="image" /&gt; &lt;img src="img/girls/1g.jpg" alt="image" /&gt; &lt;/div&gt; &lt;div id="gctext6"&gt; &lt;div class="girltext"&gt;Tina&lt;/div&gt; &lt;div class="girltextsm"&gt;info&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/td&gt; &lt;td class="girlrow2" valign="top"&gt; &lt;div class="girlbox"&gt; &lt;div class="girlplace" id="girlcycle7"&gt; &lt;img src="img/girls/1f.jpg" alt="image" /&gt; &lt;img src="img/girls/1d.jpg" alt="image" /&gt; &lt;img src="img/girls/1g.jpg" alt="image" /&gt; &lt;/div&gt; &lt;div id="gctext7"&gt; &lt;div class="girltext"&gt;Natalie&lt;/div&gt; &lt;div class="girltextsm"&gt;info&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/td&gt; &lt;td class="girlrow2" valign="top"&gt; &lt;div class="girlbox"&gt; &lt;div class="girlplace" id="girlcycle8"&gt; &lt;img src="img/girls/1b.jpg" alt="image" /&gt; &lt;img src="img/girls/1e.jpg" alt="image" /&gt; &lt;img src="img/girls/1g.jpg" alt="image" /&gt; &lt;/div&gt; &lt;div id="gctext8"&gt; &lt;div class="girltext"&gt;Lana&lt;/div&gt; &lt;div class="girltextsm"&gt;info&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; </code></pre> <p><strong>CSS for the content area/background/etc</strong></p> <pre><code>#girlcontent { width:860px; background-color:#000; } #girlspace { background-color:#000; padding-bottom:35px; width:860px; } .girlbox { background-image:url(../img/girlsbacka.png); background-repeat:no-repeat; background-position:center; height:264px; width:194px; margin:10px; z-index:0; position:absolute; } .girlbox:hover { background-image:url(../img/girlsbackb.png); background-repeat:no-repeat; background-position:center; height:325px; width:194px; } .girltable { width:860px; position:relative; z-index:0; } .girlrow { height:264px; z-index:3; position:relative; } .girlrow2 { height:264px; z-index:2; position:relative; } </code></pre> <p><strong>Javascript for the area, there's more based upon the ID's</strong></p> <pre><code>$(document).ready(function() { $('#girlcycle').cycle({ fx: 'fade', delay: -250 }); $('#girlcycle').cycle('pause'); $('#gctext').hide(); $('#girlcycle').hover(function() { $('#girlcycle').cycle('resume', true); $('#gctext').show(); }); $('#girlcycle').mouseleave(function() { $('#girlcycle').cycle('pause'); $('#gctext').hide(); }); </code></pre> <p>If anyone has any idea why this wouldn't work in webkit, I'd be grateful for any help that you can offer!</p> http://stackoverflow.com/questions/1584790/disjoin-browser-from-http-qtwebkit-the-right-decision 0 disjoin browser from http - QtWebKit the right decision? Dill 2009-10-18T12:39:33Z 2009-11-22T15:03:37Z <p>Hi,</p> <p>im planning to create control-panels (touchscreeen-visualizations) for my house (KNX - bus). The control panel will be designed by HTML/CSS so it can also be accessed by a browser via the WWW. But inside the house i need a very fast and dynamic interface (eg use a js-slider and dimm a light in real-time). so i want to disjoin a browser from HTTP and control the DOM directly.</p> <p>for example:</p> <ul> <li><p>a state in the house changes (eg light turns on). this event will <em>not</em> be notified to a webserver that waits for all the panels to pull for state-changes but will be directly broadcasted to all the panels where the DOM is updated by a controller-code.</p></li> <li><p>i click a button in the panel or move a slider. these events are not posted to a webserver, but are sent directly to the target KNX-actors. (light turns on / is dimmed)</p></li> </ul> <p>so now im asking myself - how is this done? i found the QtWebKit Module which seems to do just what i want:</p> <p>"A bridge between the JavaScript execution environment and the Qt object model makes it possible for custom QObjects to be scripted. Integration with the Qt networking module enables Web pages to be transparently loaded from Web servers, the local file system or even the Qt resource system." (from the detailed desc.)</p> <p>what do you think, is this the right way?</p> <p>how fast is the webkit javascript engine? i need a very fast javascript engine, cause many of the controls that will be used by the panel will depend on javascript and have to be very reactive.</p> <p>any pointers greatly appreciated, thank you!</p> http://stackoverflow.com/questions/1763365/iphone-safari-web-app-seeking-overview-of-iphone-specific-features 4 iPhone Safari Web App: Seeking overview of iPhone-specific features Thomas Tempelmann 2009-11-19T13:39:28Z 2009-11-20T23:55:07Z <p>I am trying to get an overview of what kind of native iPhone features I can get access to when I write a Web App (using html/css/javascript, running in Safari).</p> <p>Meaning: I like to know whether I can get access to features specific to "smartphones" in general and iPhone/iTouch in particular (accelerometer, address book, photo library, the iPhone's unique identifier, camera, compass, available Wifi networks, etc.).</p> <p>I suppose there must be an overview somewhere, probably on the Apple developer site, but I have trouble finding it, because it's all about native apps now.</p> http://stackoverflow.com/questions/472951/how-do-i-print-an-iframe-from-javascript-in-safari-chrome 1 How do I print an IFrame from javascript in Safari/Chrome Andrew Bullock 2009-01-23T13:53:08Z 2009-11-20T15:57:15Z <p>Hi,</p> <p>Can someone please help me out with printing the contents of an IFrame via a javascript call in Safari/Chrome.</p> <p>This works in firefox:</p> <pre><code>$('#' + id)[0].focus(); $('#' + id)[0].contentWindow.print(); </code></pre> <p>this works in IE:</p> <pre><code>window.frames[id].focus(); window.frames[id].print(); </code></pre> <p>But I can't get anything to work in Safari/Chrome.</p> <p>Thanks</p> <p>Andrew</p> http://stackoverflow.com/questions/1619802/uiwebview-resizes-text-after-rotating-looking-for-explanation-for-magical-bug-or 0 UIWebView resizes text after rotating: looking for explanation for magical bug or my stupidity sniurkst 2009-10-25T02:33:43Z 2009-11-19T13:38:44Z <p>Hello, all,</p> <p>so I have UIWebView in my application and I load some html (article) to it, put some CSS to make everything nicer. That's simple and clear and everything is perfect until I try to add reading in landscape functionality and then I've noticed that UIWebView ignores any css "font-size" I've put in HTML and increases font size drastically after rotating to landscape mode.</p> <p>I've spent about 4-5 hours (I'm new to programming Iphone application, but I'm quite stubborn when it comes to making something right) trying to fix it. Tried lots and lots of configuration options - NOTHING.</p> <p>And tonight something magical has happened. Just look at source:</p> <p><strong>Landscape with The Bug:</strong></p> <pre><code>r = CGRectMake(0.0, 0.0, 480.0, 320.0); [adView.view removeFromSuperview]; if (!isFullScreen) { minus = 50 + minus; [controlsView setFrame:CGRectMake(0, r.size.height - 50, r.size.width, 50)]; } else { minus = 20; } [textView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; [scrollView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; </code></pre> <p><strong>Landscape fixed (font size does not change anymore):</strong></p> <pre><code>r = CGRectMake(0.0, 0.0, 480.0, 320.0); [adView.view removeFromSuperview]; if (!isFullScreen) { minus = 50 + minus; [controlsView setFrame:CGRectMake(0, r.size.height - 50, r.size.width, 50)]; } else { minus = 20; } [textView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; [scrollView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; if (!isFullScreen) { minus = 1 + minus; } else { minus = 20+1; } [textView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; [scrollView setFrame:CGRectMake(0, 0, r.size.width, r.size.height - minus)]; </code></pre> <p>As you can see I only added the same code one more time and increased margin (minus) by one point. And did setFrame again (no, it doesn't fix the resizing with only one set of setFrames).</p> <p>I'm happy it works, but I would like to know HOW and WHY, so I can do it "right way", because now code looks stupid and have 1 point heigh margin at the bottom of application. </p> <p>And don't ask why I've tried to copy paste the same code again..</p> http://stackoverflow.com/questions/1761473/how-to-enable-cookie-support-with-pywebkit 0 How to enable cookie support with pyWebKit? int3 2009-11-19T07:20:08Z 2009-11-19T10:18:38Z <p>The documentation for pyWebKitGTK is pretty scarce. I've looked through their python <code>.def</code> files but they don't seem to contain the words cookie, session, (lib)soup or (lib)curl.. so maybe it isn't possible, huh. I've also looked through the WebKitGTK docs (for the C-based library) and aside from a brief mention of libsoup there doesn't appear to be anything there either. But on the other hand cookie support seems like pretty fundamental stuff. Could anyone confirm / deny PyWebKitGTK's support of cookies?</p> <p>Note: am currently using the GTK version, but I don't mind switching to the Qt one if the feature is there.</p> http://stackoverflow.com/questions/1756224/really-quick-and-dirty-solution-for-embedding-webkit-in-a-swing-ui 2 Really quick and dirty solution for embedding webkit in a Swing UI? Sakin 2009-11-18T14:03:42Z 2009-11-18T14:19:35Z <p>Hi, I am looking for a really quick and dirty solution for embedding webkit in a Swing application.</p> <p>What I am looking for is a way to implement a panel that contains a webkit browser running some JavaScript that will be able to do one or more of the following:</p> <ul> <li>Call a Java function of the containing application</li> <li>Send JSON objects to the containing application</li> </ul> <p>I would also like to have access to the DOM from my Java code.</p> <p>Thanks,</p> <p>Ariel</p> http://stackoverflow.com/questions/1746058/which-delegate-method-will-be-invoked-when-click-the-tab-of-safari -1 which delegate method will be invoked when click the tab of safari? jin 2009-11-17T01:37:09Z 2009-11-17T23:34:02Z <p>As we know , When we load frame from webpage of safari, we will invoke the delegate methods of webkit informal protocol(WebFrameLoadDelegate):</p> <p>webView:didStartProvisionalLoadForFrame:</p> <p>webView:didChangeLocationWithinPageForFrame:</p> <p>and When we click or change the tabs of safari,which delegate methods will be invoked? Thank you very much!</p> http://stackoverflow.com/questions/1736264/how-do-i-select-arbitrary-text-on-the-page-using-javascript 0 How do I select arbitrary text on the page using javascript? Lucas 2009-11-15T01:27:17Z 2009-11-17T22:35:55Z <p>Let's say I have a contentEditable <code>div</code>, to the user can edit and change the text and elements inside it. How do I arbitrarily change the selection in this <code>div</code> with javascript? By "change" I don't mean "change the contents of whatever the user has selected", I mean actually change <em>what</em> is selected. The user should then be able to type over the selection, replacing it with something else.</p> <p>This should take into account that I may want to select text across elements. For instance: </p> <pre><code>&lt;p&gt;Some text &lt;span&gt;goes&lt;/span&gt; here.&lt;/p&gt; </code></pre> <p>I may for instance want to select "Some text go", or everything inside the <code>&lt;p&gt;</code>.</p> <p>This only needs to work in Safari/Webkit.</p> <p>Thanks in advance. As a native code developer, I find the DOM and Javascript in general quite frustrating.</p> http://stackoverflow.com/questions/108612/full-page-zoom-in-safari 2 Full page zoom in Safari mattflo 2008-09-20T16:21:01Z 2009-11-17T13:12:46Z <p>By default zoom in Safari is text only. Is there way to change to "full page zoom", in which images are zoomed as well? Or better yet, preserve existing "text only" zoom and also allow full page zoom for people who want it?</p> <p>Full page zoom is the default on Internet Explorer 7+ and Firefox.</p> http://stackoverflow.com/questions/1748597/how-to-access-images-loaded-from-css-in-qt-webkit-java 0 How to access images loaded from css in Qt Webkit (java) Richard 2009-11-17T12:38:15Z 2009-11-17T12:38:15Z <p>Hi,</p> <p>In Qt WebKit you can call QWebFrame.renderTreeDump() to see the render tree. For images in html </p> <pre><code>&lt;img src=...&gt; </code></pre> <p>you get something like:</p> <pre><code>RenderImage {IMG} at (0,0) size 174x71 </code></pre> <p>However, there is no render information for images loaded from ccs (backgrounds etc). Is there a way to access these? I'd also like to be get the urls of loaded images too.</p> <p>Thanks </p> http://stackoverflow.com/questions/1748179/positionrelative-for-anchors-in-webkit-broken-work-arounds 0 Position:relative for anchors in webkit broken. Work-arounds? Michael Chernetsov 2009-11-17T11:18:12Z 2009-11-17T12:04:36Z <p>In our project we used the following method to link users to some anchorred area on the page:</p> <pre><code>&lt;span style="position: relative; top: -100px; z-index: -1; visibility: hidden;" id="anchor"&gt;&amp;nbsp;&lt;/span&gt; </code></pre> <p>This was used to leave a little space before the exact anchorred element like a form.</p> <p><a href="http://gyazo.com/9f714647b516254f5220910b0cace532.png" rel="nofollow">http://gyazo.com/9f714647b516254f5220910b0cace532.png</a></p> <p>But since some late version of Safari this has broken and browser is positioning at the initial position of the element with no regard to the relative position.</p> <p>Maby you have met this feature/bug too and have some work around to propose or can point out why my method is bad. Thx!</p> http://stackoverflow.com/questions/464416/how-to-show-a-local-image-in-the-webview -2 How to show a local image in the webview? jin 2009-01-21T08:17:40Z 2009-11-17T11:14:20Z <p>I want to show a local image in the webview , How to do ? somebody has a easy demo ? thanks a lot!!!</p> http://stackoverflow.com/questions/1745331/making-textarea-display-the-same-in-webkit-as-in-other-browsers 1 Making textarea display the same in WebKit as in other browsers Ben McCann 2009-11-16T22:43:09Z 2009-11-16T22:48:46Z <p>Webkit decided there weren't enough browser incompatibilities and added 2px of padding to my textarea. However, if I set padding:0 then it looks awful when typed in. Is there a way I can make it the same size without destroying the display? (It seems like -webkit-padding-start:2px and -webkit-padding-start:2px will fix the left and right, but there are not corresponding properties for the top and bottom)</p> <p>Also, there's some type of little handle in the bottom right corner to allow resizing of the textarea. Any idea what CSS property might turn this off?</p> http://stackoverflow.com/questions/1740284/how-i-can-track-safari-activity-from-my-application 0 How i can track Safari activity from my application suresh Pandey 2009-11-16T05:44:25Z 2009-11-16T15:24:37Z <p>I have to develop an application to monitor Safari activity like all open url , tabs on particular window and loding time of particular url.</p> <p>I also need to track online streaming that is happening on particular opened htmm page </p> <p>URL of streaming source, which player is being used for streaming and all other basic information which opened page contains.</p> http://stackoverflow.com/questions/1732772/cocoa-webview-cross-thread-access 0 Cocoa WebView cross-thread access toastie 2009-11-14T00:33:50Z 2009-11-14T11:55:56Z <p>I have a C++ class running in its own thread that needs to execute some javascript in a WebView that's part of a Cocoa app. I have the C++ app call a method in the Cocoa window's controller and it in turns runs the javascript, passing in the data. It seems to work part of the time, but crash a lot of the time as well (somewhere in WebView's code). I tried using the @synchronized on the webview instance, but it doesn't seem to be doing anything.</p> <p>Can anyone offer any advice?</p> http://stackoverflow.com/questions/1733715/programmatically-take-screenshot-of-desktop-in-ruby 1 Programmatically take ScreenShot of Desktop in Ruby? viatropos 2009-11-14T08:43:19Z 2009-11-14T09:42:45Z <p>Hey there,</p> <p>I asked this question about <a href="http://stackoverflow.com/questions/1632836/how-to-programmatically-take-snapshot-of-crawled-webpages-in-ruby">taking a picture of a webpage programmatically</a>, and I've downloaded and got <a href="http://www.paulhammond.org/webkit2png/" rel="nofollow">webkit2png</a> working (taking pictures of HTML pages like blogs and whatnot). So cool, thanks for showing me that!</p> <p>Now I would like to start doing more, like being able to take pictures of Flash websites after they have loaded, and of my desktop.</p> <p>Is it possible to take pictures of Flash websites with webkit2png (considering you might have to wait a few seconds for it to load)?</p> <p>But the main question is, how do I programmatically take pictures of the desktop? That would allow me to have much more control over what's going on.</p> http://stackoverflow.com/questions/1091048/alternatives-to-window-scrollmaxy 0 Alternatives to window.scrollMaxY? gsmd 2009-07-07T08:36:47Z 2009-11-14T00:19:34Z <p>I' trying to use <em>window.pageYOffset</em> &amp; <em>window.scrollMaxY</em> to calculate the current page progress. This approach works under FF3.5 but under webkit <em>window.scrollMaxY</em> is undefined.</p> http://stackoverflow.com/questions/1728512/how-can-i-create-thumbnails-of-web-pages-using-a-layout-engine-in-perl 6 How can I create thumbnails of web pages using a layout engine in Perl? munissor 2009-11-13T10:54:19Z 2009-11-13T17:18:20Z <p>Are there bindings for layout engines like Gecko or WebKit for Perl? I found Gtk2-Webkit on CPAN but I would like to know if there are other options.</p> <p>My idea is to use one of those engines to create thumbnails of web pages from a Perl script.</p> http://stackoverflow.com/questions/1080792/how-to-draw-vertical-text-with-css-cross-browser 0 How to draw vertical text with CSS cross-browser? usr 2009-07-03T20:53:36Z 2009-11-13T16:23:02Z <p>Hi, i want to rotate a single word of text by 90 degrees cross-browser (>= ie6, >= ff2, webkit).</p> http://stackoverflow.com/questions/1721743/html5-db-error-callback-how-to-know-the-sql-request-throwing-error 0 HTML5 DB error callback, how to know the sql request throwing error ? Samuel Michelot 2009-11-12T12:06:29Z 2009-11-12T15:43:51Z <p>I use the html5 database in safari like that (simplified code) :</p> <pre><code>createContent : function() { this.database.transaction(function(transaction){ for (var elm in lotOfElm) { transaction.executeSql('INSERT....VALUES (?, ...?)', [elm.att1, elm.att2...], nullDataHandler, errorHandler); } }); }, errorHandler: function(transaction, error){ LOG.exception('Error : '+error.message+ ' (Code ' + error.code + ')'); }, </code></pre> <p>I have a lot of successfull insert, except one throwing this message : Error : number of '?'s in statement string does not match argument count (Code 1)</p> <p>But in the errorHandler, I don't know which query is throwing an error (because they are executed in asynchrone). The error object doesn't have the sql query executed. I think this is a very annoying lack of the HTML5 specification...</p> <p>To solve my problem, I have wrapped all my insert in an unique transaction, and I set a name to the transaction (the only element in accessible in the errorHandler). But it's an hacky workaround... </p> <p>Any idea to have more information in the error handler ?</p>