webkit Questions

2

While building an app using node-webkit for windows, I need to print without the dialogue box. Is this possible? Similar to: http://drziegler.net/kiosksilent-printing-in-google-chrome/ Any hel...
Animalize asked 16/3, 2014 at 20:8

4

I'm trying to render a HTML page as a PNG with transparency enabled. This is the command that generates the images: /usr/local/bin/wkhtmltoimage-amd64 --transparent --crop-h 300 --crop-w 210 temp...
Gilliland asked 20/5, 2015 at 15:24

39

Solved

I am using a Direct Web Remoting (DWR) JavaScript library file and am getting an error only in Safari (desktop and iPad) It says Maximum call stack size exceeded. What exactly does this erro...
Mentholated asked 23/5, 2011 at 9:49

3

Solved

I am working on an input type range slider. I found out that the Chrome version of input[type=range]::-moz-range-thumb is input[type=range]::-webkit-slider-thumb . Now, I want the same for input[ty...
Coraliecoraline asked 15/1, 2021 at 15:23

2

I'm using CSS3 Animations, and I want to be able to move to a specific spot in the animation. For instance, if the CSS looks like this (and pretend that I used all the proper prefixes): @keyframes...
Aberrant asked 10/5, 2012 at 19:15

13

Solved

Is there a Webkit-specific CSS style that will allow me to control the color/size/style of the box around the color in an input[type=color]? I'm setting the color and background color of the input ...
Durand asked 23/6, 2012 at 5:58

11

Solved

The simple HTML below displays differently in Firefox and WebKit-based browsers (I checked in Safari, Chrome and iPhone). In Firefox both border and text have the same color (#880000), but in Safar...
British asked 4/11, 2008 at 15:26

7

Solved

Can anybody advise me on this? WebKit browsers keeps on putting a gray 1px border around disabled images. The reason I need this removed is for email optimization for when email clients have images...
Thug asked 31/10, 2012 at 4:36

10

Solved

I am using CSS shader + animation. My shader class is defined as follows: .shader{ -webkit-filter :custom(url(v.vs) mix(url(f.fs) multiply destination-over), 200 200); -webkit-animation-name: test...
Baccarat asked 17/4, 2013 at 3:24

13

I need to add custom headers to EVERY request coming from the WebView. I know loadURL has the parameter for extraHeaders, but those are only applied to the initial request. All subsequent requests ...
Selfregard asked 30/9, 2011 at 13:6

11

Solved

I'm using the following HTML code to autoselect some text in a form field when a user clicks on the field: <input onfocus="this.select()" type="text" value="Search"> This works fine in Fi...
Spillway asked 30/5, 2010 at 14:59

3

Solved

I have been trying to get the webrtc logs for my web application running over safari browser, similar to what we get in firefox by going to the page about:webrtc and on chrome by using chrome://web...
Munsey asked 22/7, 2020 at 14:46

4

Solved

I've got this css code that makes a webkit scrollbar. ::-webkit-scrollbar { width: 8px; height: 8px; } This will make a scrollbar that will be right next to the screen edge. Is there any way t...
Phia asked 12/9, 2012 at 16:19

1

I maintain a small website for a non-profit organization. Multiple .pdfs are available for viewing on the website. I’ve come across an issue with .pdf display in the current version of Safari (v. 1...
Dulcimer asked 22/4, 2023 at 2:40

2

I use the following rule to make scrollbars invisible: ::-webkit-scrollbar { display: none; } How do I override this rule to make scrollbars visible again? I tried the following: ::-webkit-scro...
Knotweed asked 24/2, 2014 at 10:45

4

Solved

I'm trying to set the selection color on our site [for browsers that support this; unsupported will get the system default; looking for CSS-only & won't implement JS for this]. The ::selectio...
Eolithic asked 21/8, 2013 at 19:36

7

Solved

I have a form with a list of dates on it and I'm using the HTML 5 input type="date" element to represent them. I'd like to change the colour of the fields that don't have a value (i.e. those that s...
Folly asked 24/1, 2013 at 17:24

3

Solved

By default, <input type="search" /> renders like a "native" search field on Mac OS X (rounded corners, clear button, etc.). I want to completely remove this custom styling so that the input l...
Fleming asked 23/2, 2012 at 21:23

2

There are lots of SO questions and blogs on the internet attempting to explain what virtual dom is, but this question is about why this kind of optimisation has to be to implemented in JavaScript/a...
Indium asked 6/3, 2017 at 10:4

10

Solved

I am getting the error "Uncaught RangeError: Maximum call stack size exceeded" on chrome. here is my jQuery function $('td').click(function () { if ($(this).context.id != null && $(this)....
Braun asked 5/10, 2011 at 8:48

4

Solved

Is it possible to style the center circle of a selected radio button, at least in webkit browsers…? What I have now: What I want: I can change the background color, shadow etc as follows #sea...
Bawdyhouse asked 19/4, 2014 at 8:13

3

Solved

I'm looking for a simple and abstract way of cloning or re-dispatching DOM events only. I am not interested in cloning DOM nodes. I've experimented a bit, read the DOM Events specification and I ...
Brutus asked 15/8, 2012 at 17:40

6

Solved

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not ...
Kaitlinkaitlyn asked 13/2, 2012 at 13:26

5

Solved

If you are sending data that is base64-encoded and compressed (using, say, python's zlib.compress()), you can use the native Chrome function window.atob() to convert from base64 to binary data. Is ...
Myceto asked 16/6, 2011 at 20:13

2

Solved

Using Safari Web Inspector on a WebKit based app stopped working on iOS 16.4. This was properly working before. More specifically, using the iOS Simulator or a real device, debugging a WebKit based...
Coal asked 10/4, 2023 at 8:30

© 2022 - 2024 — McMap. All rights reserved.