WebKit is an open source web browser engine that powers Google Chrome, Apple Safari, and several mobile browsers including the pre-installed browsers for Android, iOS, RIM Blackberry, Symbian and WebOS.
1
vote
0answers
7 views
Chromium: is communicating with the page faster than communicating with a worker?
Suppose I've got the following parts in my system: Storage (S) and a number of Clients (C). The clients are separate Web Workers and I'm actually trying to emulate something like shared memory for ...
0
votes
1answer
16 views
TransitionEnd stacking events
When trying to do some slides for a mobile-page I run into a problem with transitions and transitionEnd
$(document).on('click', '#map_view', function () {
var lpw = $('.list-page-wrap'), mpw = ...
0
votes
0answers
13 views
Chrome 27 ignores table border color when -webkit-backface-visiblity:hidden is applied
The new version of Chrome (27), seems to ignore the border color of a table cell when
-webkit-backface-visibility: hidden is applied to the cell.
The reason I am applying that, is to deal with the ...
0
votes
0answers
10 views
Google Maps API V3 Printing
Using the Google Maps API (V3) I've got a pretty simple map which adds markers to places in the UK:
However on printing it appears more like this in webkit browsers (works fine in Firefox and IE):
...
0
votes
1answer
24 views
Why SIGSEGV still occurred?
The tombstone:
05-24 09:56:30.999 W/chromium( 2075): external/chromium/net/disk_cache/backend_impl.cc:1829: [0524/095631:WARNING:backend_impl.cc(1829)] Destroying invalid entry.
05-24 09:56:31.019 ...
1
vote
1answer
34 views
CSS Hover on Elements with Transformation [Chrome/Webkit Bug]
I have a div I'm applying a transform to with CSS. The actual transformation is as follows:
.trans{
transform-origin: right center;
transform: perspective( 600px ) rotateY( -30deg) ...
-1
votes
1answer
30 views
Really Bizarre Google Fonts and Letter Space Issue that materialized out of thin air, foreign characters won't load [closed]
So, in the last few hours, my website in development sprouted an issue. Where there are the character İ or I in small-caps variant, loading Roboto from google fonts, the spacing is suddenly all messed ...
0
votes
1answer
32 views
How to resolve c++ source code to obj?
I have source code:
RenderPart* Frame::ownerRenderer() const
{
HTMLFrameOwnerElement* ownerElement = m_ownerElement;
if (!ownerElement)
return 0;
RenderObject* object = ...
0
votes
1answer
40 views
optimising javascript browser resizer for webkit browsers
I'm going to keep this short and sweet. In webkit browsers, there seems to be a slow response with the auto resizer function I have applied to my site things only seem to come into to place when the ...
2
votes
2answers
52 views
CSS Transform Translate to center of Window
I have a list of elements and upon a specific action, i'd like to apply the css-transform translate to move it into the center of the window. I know css-transform is used to relatively move an ...
0
votes
1answer
30 views
C# - processor architecture mismatch
Here is the error which occurs when I added the library webkitbrowser.
There was a mismatch between the processor architecture of the project being built "MSIL" and the processor architecture of the ...
0
votes
0answers
25 views
force safari to repaint DOM
Apparently, Safari does not repaint the DOM during the submit event. I have code that contains an ajax function inside the submit handler. I cannot change the action of the form or the submit button ...
1
vote
0answers
11 views
CSS glow animation keyframes work on Chrome but not iOS Safari
Any idea why this works in Chrome but not Safari?
http://jsfiddle.net/tTxMV/
CSS:
@-webkit-keyframes glow {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
...
1
vote
1answer
30 views
webkit-filter breaks overflow: hidden
It seems I've run across a weird rendering bug that was introduced in Google Chrome 27.
If you have a container with a webkit-filter and children element with overflow: hidden the overflowed content ...
0
votes
0answers
11 views
What library need in linux for webkit playing html5 video?
My situation: I create simple qtwebkit app and trying to load html5 web page with <video> tag.
In my workstation app worked.
But then I moved app in thinclient - app running, but writes "tag ...
0
votes
2answers
32 views
Problems animating the CSS clip property in WebKit
I've searching around and the solution I found to my problem didn’t seem to work.
I’m new to CSS3 Animations, so bear with me please.
I’m creating a simple animation using CSS3 and it works great in ...
0
votes
0answers
15 views
How to open external links to safari/chrome browser in Cocoa
I'm a newbie in Cocoa development.
I have read about using WebPolicyDelegate. However, I can't seem to have it work the way it should. I want the app to open external links and have it launched in a ...
0
votes
1answer
20 views
Moz appearance for radio button shows radio still
I'm using -webkit-appearance and -moz-appearance so that I can style my radio buttons differently. When I do this in Chrome I get what I want:
When I use -moz-appearance for Firefox browsers, it ...
0
votes
0answers
39 views
page/form cutting off at 100% height
I am working on building an options page for a small website I am working on, but I have run into a rather interesting error. The bottom of my form seems to abruptly cut off at 100% browser height as ...
0
votes
1answer
19 views
Sending events to createjs.Stage children (or JavaScript objects in general)?
I am developing an HTML5 application with EaselJS that uses a canvas element covering the entire window to display its interface. I'm using the following function to fix canvas bounds in case user ...
0
votes
0answers
9 views
Safari: Fixed background + transition
Example site
I have a site divided into your usual vertical sections. Header and footer both contain backgrounds with background-attachment: fixed. I have a slide-out nav, which you can see is ...
-2
votes
0answers
16 views
how can I install webkit for python in ubuntu 12.10? [closed]
I am trying to install webkit in ubuntu12.10 pc. But through google search I can't find a better solution.
I want to create a web browser with webkit
currently when I try
>>> import ...
0
votes
0answers
18 views
Cannot connect a button click to a C function using GTK WebKit Webview
I am creating an application where the GUI is presented using HTML and JavaScript and the button actions need to interact with hardware attached via USB. I have all the hardware related functions as a ...
0
votes
0answers
33 views
Delay before displaying a CSS gradient in a Sencha Touch Carousel
I'm using Sencha Touch to build a mobile app in which there is a carousel. Each item is a small piece of HTML containing text and images. In some of these items, I need to add a gradient a the bottom. ...
0
votes
0answers
27 views
UIWebView stack traces have wrong line number
If I have some javascript like this loaded into a web view:
<script>
function testError() {
try {
functionDoesntExist();
} catch(err) {
alert(err.stack[0]);
}
};
...
0
votes
0answers
39 views
CSS3 animation and transition not smooth
I'm trying to develop a slideshow plugin for a project, but I'm running into issues with the CSS3 animations/transitions.
You can view it here:
http://jsfiddle.net/75Sjb/
What I'm trying to do
...
1
vote
2answers
58 views
Flexible box layout model: How should auto margins in the cross-axis direction behave?
Please help me to understand one issue with the flexible box layout model for which I get different results in Firefox and Chrome.
Consider the following HTML fragment:
<body>
...
0
votes
2answers
30 views
CSS inline svg background in select with firefox
I am building a custom select tag with an inline svg background using -webkit-appearance: none in my css.
http://jsfiddle.net/sucrenoir/yHR53/5/
select {
font-size: 30px;
border: 1px solid ...
0
votes
0answers
20 views
Open Safari / Google Chrome developer tools programmatically from JavaScript
I'm looking for a way to open the WebKit “developer tools” from a script attached to a web-page. I need solutions for both Google Chrome and Safari, that will open the developer-tools pane if it's not ...
-1
votes
1answer
26 views
webkit box vs boxflex
I recently ran across a tutorial where the instructor used this syntax:
display: -webkit-box;
http://www.youtube.com/watch?v=B-MNkBh7F2A @ 2:30 (created aug 2012)
I hadn't seen this before and ...
0
votes
0answers
17 views
Prevent half pixels position when apply a percentage based 2D transform in Webkit
When applying in webkit a 2D transform using a percentage, in this case translateY(-50%) it seems that if the object size isn't even, the result will be blurry edges.
Does anybody know how to ...
0
votes
0answers
8 views
webkit inspector, showing back the “only enable for this session” option
In webkit inspector (inspect element); at the Profiles tab, I accidentally choose the Always enable and press the Enable Profiling button, so I can not have that options again when I want to debug or ...
0
votes
0answers
13 views
webkitNotifications Position
Is it possible to set webkitNotifications position in code rather then through settings which applies to all notifications.
var notification = window.webkitNotifications.createNotification("","My ...
0
votes
0answers
15 views
best practice for unlimited scroll list on html mobile app
I'm working on hybrid app for both ios and android. I'm dealing with crashing problem of unlimited list. The list will keep loading more data when you scroll, and it will crash if the list is too ...
0
votes
0answers
21 views
Specific hover effect on mouseover on navigation bar line
I'm trying to add a hover effect to the line under my navigation links.
I want to achieve this effect through css if possible.
I assume that for the line to change colors when over the specific link
...
1
vote
0answers
24 views
How to get accessKeyLabel in WebKit with JavaScript?
accessKeyLabel from what I can tell is not supported in Webkit (but works fine in Firefox) at the time of writing. This snippet shows what happens:
<input type="text" accesskey="D" name="dog" ...
0
votes
1answer
23 views
Settimeout works in chrome/webkit based browsers but not firefox
Can somebody explain why this simple code works in webkit based browsers (even my android phone), but not on firefox?
(The code basically refreshes an iframe every 1000 ms (a bash script echos to that ...
0
votes
0answers
40 views
Non-documented API & headers
I'm using JavaScriptCore in one of my Objective-C project, and I'd like to know at any time what's the current file & line when falling into a JS callback.
There is no way to do it with the ...
0
votes
0answers
15 views
Why do webkit browsers animate randomly?
Recently I noticed a problem with jQuery 1.9+ and Cycle2, only when viewed in a Webkit browser. The tile effect should smoothly transitions left to right:
<div id="slideshow" ...
0
votes
1answer
33 views
CSS animation issue with Firefox
I'm experiencing a browser incompatibility issue for Firefox, which I can't seem to fix. This works fine in modern IE and Chrome, but you'll see that when you hover over a box that its contents show ...
0
votes
0answers
12 views
Jquery - Supersized image resize on Android Browser
I m trying to use http://buildinternet.com/2011/07/supersized-3-2-fullscreen-jquery-slideshow/
on a web page, which works fine across desktop and iOS browsers, sadly the images stretch in android ...
0
votes
1answer
41 views
Embedded Chromium or Webkit in Android app
For our Android app, we would like to embed our own browser/rendering engine. The most likely candidate for this, is Webkit/Chromium. We are looking for something similar to WebView, essentially, but ...
0
votes
0answers
24 views
CSS3 -webkit- Animations not working Safari
I have the actual URL that takes to you my dev page.
This works in mozilla and chrome, but not SAFARI. This just shows you what I am trying to achieve in Safari as you click the top links.
URL:: ...
0
votes
1answer
21 views
Image blur effect working on Firefox and IE
I'm testing the blur effect -webkit-filter:blur(5px) which seems to work only with Chrome.
But I've found this:
http://vectorflower.com/preview/trans_banner/
I dont know how they do it, but works ...
1
vote
2answers
37 views
-webkit-flex not displaying properly on Android
After realizing the wonderful abilities of display:flex, I made a web page that looks exactly how I want it to when viewed from Chrome 26 on Windows. However, it doesn't work in Chrome 26 on my ...
2
votes
1answer
74 views
+500
Android WebKit focused textarea won't draw background image
Android WebKit draws a white background + border on a textareas and inputs when they have focus. How do I stop it from doing that?
I've tried changing -webkit-tap-highlight-color, ...
0
votes
0answers
25 views
Equivalent CSS3 transform animation
I have observe than on ios devices this animation
@-webkit-keyframes animation{
'0%{top:-1000px}';
'100%{top:0px}';
}
Performs slower than
@-webkit-keyframes animation{
...
1
vote
0answers
62 views
-webkit-text-size-adjust is no longer supported,how to set font-size to less than 12px
When I update my chrome to 28.0.1500.11 dev-m, I found that:
-webkit-text-size-adjust:none;
is no longer supported,and I found the changlist here http://trac.webkit.org/changeset/145168
It`s not ...
0
votes
0answers
9 views
get variable from a def in pywebkit
i have the following code in pywebkit:
def on_record(self, action):
dialog = gtk.Dialog("Enter filename:", self, 0,
(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OK, gtk.RESPONSE_OK))
entry = ...
0
votes
0answers
11 views
navigate Webkitbrowser of one form from another form
I have one form which contain webkitbrowser.
In another form i am calling one method of 1st form, that method is
public void ShowEpub(string st)
{
webKitBrowser1.Navigate(st);
...






