Google Chrome is a web browser available on both mobile and desktop platforms. Developed by Google, it uses the WebKit layout engine and application framework.

learn more… | top users | synonyms (1)

-5
votes
1answer
30 views

POST-Data in chrome with intent [closed]

I want to program an App, that sends my login via POST to an website and opens it in Chrome. But because of cookies, i want to send an intent to chrome, containing URL and data to send. Sorry for my ...
0
votes
2answers
52 views

border-radius not working on Chrome all of sudden

Did Chrome change css rendering rule overnight? I've noticed this morning that the border radius property is not being interpreted on Chrome all of sudden. It works fine on IE9 & 10. And as far ...
0
votes
0answers
7 views

Printing another frame working in Chrome but nothing else

I have some code which lets you print another frame on the click of a button, and it works fine in Google Chrome, but I get a blank page (it prints about:blank) in firefox. I haven't tried it in IE ...
1
vote
1answer
70 views

Userscript no longer runs on iframes, in Chrome 27

I have a chrome extension which consists of a Greasemonkey userscript that has been packaged up so that Chrome users don't have to bother with Tampermonkey. The page on which the script runs consists ...
2
votes
1answer
39 views

Chrome linear gradient bug

I have a repeating linear gradient like so: .placeholder { background: repeating-linear-gradient(to top right, #7722AA 0px, #7722AA 6%, #CC44EE 6%, #CC44EE 13%) transparent; border: 1px solid ...
0
votes
0answers
36 views

Media Query doesn't change CSS when Maximizing Browser and Switching Tabs

Here is a bit of CSS that has a simple media query. http://codepen.io/anon/pen/nuxaw When I shrink the page so that the view port is less than 320, the box turns green. Now if I follow these steps, ...
0
votes
0answers
5 views

Mediaqueries in chrome 22.0.1229.79 m

For a school project we have to make a site with mediaqueries, but the school still uses a 22.0.1229.79m chrome browser which does not apply my mediaqueries. the css validates and works in the ...
1
vote
1answer
30 views

Why is it that what I set in localStorage isn't the same as what I get?

Consider this code: myObj = new BackboneModel({'a_key': {'c_key': c_val, 'd_key': d_val}, 'b_key': b_value}); localStorage.setItem('myObj', myObj); Now if I use Chrome developer tools to inspect ...
0
votes
1answer
35 views

Angular ng-repeat that works fine in FF somehow comments out in Chrome

I've got this code in the jsp (sized down a bit): <div class="popup default" ng-app="interview" ng-init="employeeId = '${employee.id}'; findTimelineEntries(); getAddInterviewRights(); ...
1
vote
0answers
21 views

Contenteditable bug in chrome

I'm using Chrome 27.0.1453.93 and Ubuntu 13.04 If we have contenteditable="true" on element with float set to left or right, and if the parent of this element has clearfix class, we can see strange ...
0
votes
2answers
29 views

jsp page not working in chrome but works well in mozila and opera

I have a login page which requires username and password to move to home page. So I have two fields one for username and another for password. After entering username and password you have to press ...
0
votes
1answer
17 views

Show Chrome extension version on options page?

I've got my manifest file with my version number and an options page. Is there a way to display the installed version and latest available version on the options page without needing to do it ...
0
votes
1answer
34 views

How to remove the blue cross on datetime-local HTML input in Chrome 27?

I was using the datetime-local input but since Chrome v27 a blue cross appears which allows to clear the choosen datetime. I don't want it and get back to the input we had with chrome 26. Here is how ...
3
votes
0answers
32 views

Is there SourceMaps for HTML?

In Google Chrome there are already sourcemaps for JS and CSS, CoffeeScript etc., and Paul Irish just demostrated SASS using sourcemaps. It is a a technique to map development source files to the ...
0
votes
0answers
21 views

CSS3 webkit transition bug in Chrome

I'm having a weird bug in Chrome or my CSS and I can't figure out why. It concerns the next development website: http://bit.ly/13KoKOU Whenever I'm in Chrome and I refresh the page, both the color ...
1
vote
2answers
35 views

Bug with transform: scale and overflow: hidden in Chrome

Working with CSS3 property transform: scale, I found interesting issue. I wanted to make a little zoom effect for pictures. But when I used for the parent div overflow: hidden and border-radius, the ...
-2
votes
0answers
17 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 ...
1
vote
0answers
15 views

How to allow Chrome media permissions by default?

I'm working on a project that uses the Speech API and the Webcam API, so while testing, I have to tell Chrome to 'Allow' every time I refresh the page (which I have to do every few minutes), and it ...
0
votes
0answers
35 views

Python Selenium tests not working for Chrome like they are for FireFox

I have taken identical .py files, with the self.driver = webdriver.Chrome() for Chrome and self.driver = webdriver.Firefox() for Firefox. I run them from the command line using WebDriver. The FF .py ...
-3
votes
0answers
16 views

Selenium RC Python script runs fine for FireFox but not in Chrome [closed]

I have taken identical .py files, with the self.driver = webdriver.Chrome()
0
votes
0answers
20 views

why does chrome with iis express measure wrong width of page

i have this simple html: <html> <head> <title>Code: NewYork</title> </head> <body data-ng-app="us"> <input type="text" /> </body> </html> ...
0
votes
0answers
23 views

Highcharts tooltip not showing on chrome

I have a scatter chart with 3 series, one for points on the x axis, one for points on the y axis, and one for everything else. Tooltips are enabled and I have a formatter that creates the tooltip text ...
1
vote
1answer
20 views

If next item exists in list, then applescript

This is my first Applescript. I want to be able to account for as many items as possible using a loop that will move on to the next step when there are no more additional elements in the list. My ...
0
votes
1answer
29 views

Is it possible to dump pure HTML dom with Chrome?

Usually HTML pages contain scripts and styles and may also reference them in separate files. How can I dump the pure HTML into a static html file with scripts removed and styles merged into html? So ...
0
votes
0answers
16 views

How do I tell different browsers to load different videos

I have a problem in that due to a bug in Chrome (attempting to fully preload a mp4 video even though I am specifying preload="none") means that the video will hang and not play at all. However, I ...
0
votes
2answers
21 views

Which ways can sound be produced in chrome?

I'm playing a canvas-based game in chrome. There is no mute option and i'm trying to find the audio-source. It's not flash and it's not the audio-tag. What other things can produce sound in chrome and ...
0
votes
0answers
27 views

SetLayeredWindowAttributes to make CEF transparent not working on Windows XP

I use SetLayeredWindowAttributes with LWA_COLORKEY to replace a color (#ff00ff) with transparency, in order to achieve transparent background in the CEF1 example. It works well on 7/Vista. On Windows ...
0
votes
0answers
24 views

Display a confirm box on closing tab or window on chrome from a chrome extension

I all, Is it possible to display a confirm box on closing tab or window on chrome from a chrome extension. I try Chrome.tabs.onRemoved, Chrome.tabs.onUpdated and beforeunload et unload and it ...
0
votes
1answer
18 views

Chrome CSS Hack Not working in Print Preview

I have an alignment issue only in Chrome and am using the following Chrome CSS hack in my print.css: @media screen and (-webkit-min-device-pixel-ratio:0){ .invoiceTable .smallerInput{ ...
2
votes
2answers
42 views

Where is this vertical padding in jqGrid coming from?

I've noticed a strange bug when using jqGrid with inline editing in chrome. As rows are selected, the vertical padding grows by a pixel or two each time. I'm not sure what's causing this, but I've ...
0
votes
1answer
29 views

Chrome Canary Sass debugging switches between scss files and compiled css

After setting up source maps for my scss files, and getting sass debugging up and running for canary, I'm hitting a small but frustrating snag. When I first load or reload the page and inspect an ...
0
votes
0answers
38 views

Worklight 5.0.6 dojo 'onclick' event not working in chrome

When trying our worklight application in both firefox and chrome we noticed that on chrome the onclick event on an item of our EdgeToEdgeStoreList does not work. In Firefox the onclick event does ...
0
votes
0answers
14 views

Why is Google Chrome not loading my video?

I have created 3 versions of a video file using Miro Video Converter to facilitate different browsers and I am using the following code to play them... <video class="rw-video ...
-1
votes
0answers
26 views

svg not working in chrome

I'm having issues seeing SVG's when they are set as an img src in Chrome. They just appear as blank transparencies. If I paste the link in the browser to the image however, they appear. It's working ...
0
votes
2answers
32 views

Why HTML5 video does not work on google chrome?

my code: <video width="600" height="400" controls="controls"> <source src="uploads/video/patientenhandset_uk_high.mp4" type="video/mp4" /> <source ...
1
vote
2answers
79 views

Persistent html menu in chrome extension

I have a menu that is shown on top of the web page when you click the extension button. I would like the menu to remain on page reload and when you navigate the domain - is this possible? ...
0
votes
1answer
9 views

Chrome basic auth and digest auth issue

I'm having some issues with Chrome canceling some HTTP requests and I'm suspecting cached authentication data to be the cause. Let me first write down some important factors about the application I'm ...
0
votes
0answers
13 views

Start a local program from Chrome/Chromium browser

What are the options for executing a local client-side program directly from Chrome/Chromium? Here's the criteria: ease of installation cross-platform support control over security (no other than ...
0
votes
1answer
12 views

Chrome dev tools on all tabs

I'm trying to see a POST request that my browser is making on a certain form. My problem is that the form is opened in a popup window (js initiated) and when the form is submitted it automatically ...
0
votes
0answers
35 views

Text data is not getting bind to html elements through jquery code only in chrome browser

I am trying to bind text data to html elements through a jquery using particular element id but data is not getting bind only in chrome browser, same functionality is properly working in other ...
0
votes
2answers
11 views

Chrome & Firefox keep asking for authentication when going to localhost

I'm having a problem where Chrome & Firefox have both started bringing up a popup window saying authentication required when going to localhost (401 page). If I am on the network I can put in my ...
0
votes
1answer
38 views

Google Voice Search add to favorites on chrome

How can i add on chrome, a favorite button than take me directly to Google Voice Search? I just want to save me the go to google homepage and click into the mic. That will be really useful. Thanks.
0
votes
0answers
21 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 ...
0
votes
0answers
18 views

chrome gives MEDIA_ERR_DECODE on all videos when scrubbing

I have two PCs that when scrubbing in chrome give a MEDIA_ERR_DECODE. One is windows 7 with chrome 26 and one is windows 8 with chrome 27. This happens with all videos. If I try to scrub on the ...
0
votes
1answer
29 views

How to remove white space at the end of webpage - only appears in Chrome

I've been working on a website and I can't get rid of the white space that keeps adding itself at the end of the page. This only seems to happen with Chrome, all other major browsers don't have this ...
0
votes
1answer
34 views

utf-8 characters not displaying in chrome

Having an issue with html special characters not displaying correctly in chrome see Example Page I have gone through and resaved every file in the project as utf-8 confirmed my meta tag ...
0
votes
0answers
10 views

chrome.input undefined in latest Chrome Browser (26)

Referring to documentation and sample code found here: http://developer.chrome.com/extensions/input.ime.html I am trying to install the sample extension/code to test chrome.input.ime It seems that ...
0
votes
0answers
17 views

jQuery ui progressbar is not working in chrome

I have the following element in my HTML. <div id="progressbar" class="ui-progressbar ui-widget ui-widget-content ui-corner-all" role="progressbar" aria-valuemin="0" aria-valuemax="100" ...
0
votes
0answers
26 views

Dragover (jquery) want not work when iframe is in other domain than main page (in Chrome)

is there reason why Chrome want not drag image, link or selected text over iframe when iframe source is in diffrent domain than main page is? It is surprising, because when i drag any image or link ...
-1
votes
0answers
30 views

Use chrome or firefox cookie jar in osx application

I have written an os x app, but I have a problem. My program logins on the site each time it downloads a file. It use safari cookie jar, when logins, so safari is logined on this site after my program ...

1 2 3 4 5 304