Google Chrome is a web browser developed by Google that uses the WebKit layout engine and application framework.

learn more… | top users | synonyms (1)

215
votes
6answers
34k views

WebKit issues with event.layerX and event.layerY

I just noticed that I get tons of deprecated warnings in the latest (canary) build of Chrome. event.layerX and event.layerY are broken and deprecated in WebKit. They will be removed from the ...
154
votes
15answers
144k views

Firebug-like debugger for Google Chrome

Is there anything like Firebug that you can use within Google Chrome? Essential features I would like: Inspect HTML source (select elements, delete them, etc.) check CSS values (the built-in ...
122
votes
20answers
3k views

Help building a website using punched cards?

My punched card looks like this: * * * * * * * * * * * * * * * * * * * * * * * * * My website ...
120
votes
7answers
78k views

How to print debug messages in the Google Chrome Javascript Console

Does anyone know how to print debug messages in the Google Chrome Javascript Console? Please note that the Javascript Console is not the same as the Javascript Debugger, they have different syntaxes ...
97
votes
35answers
27k views

Why was Google's Chrome browser written almost entirely in C++ and not C# or Java? [closed]

Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?
72
votes
8answers
85k views

How do you launch the javascript debugger in Google Chrome?

When using Google Chrome, I want to debug some javascript. How can I do that?
64
votes
2answers
8k views

IE/Chrome: are DOM tree elements global variables here?

Working on an idea for a simple HTMLElement wrapper I stumbled upon the following for IE and Chrome: for a given HTMLElement with ID in the DOM tree, it is possible to retrieve the div using its ID ...
60
votes
4answers
22k views

“Unsafe JavaScript attempt to access frame with URL…” error being continuously generated in Chrome webkit inspector

Chrome (or any other webkit browser) throws a ton of these "Unsafe JavaScript attempt to access frame with URL..." when working with the Facebook API for example. It doesn't interfere with actual ...
60
votes
20answers
86k views

Get real image width and height with JavaScript in Safari/Chrome?

I am creating a jQuery plugin. How do I get real image width and height with Javascript in Safari? Following works with Firefox 3, IE7 and Opera 9: var pic = $("img") // need to remove these in of ...
45
votes
12answers
43k views

Copy / Put text on the clipboard with FireFox, Safari and Chrome

In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
40
votes
3answers
7k views

Google Chrome text shadow rendering

Google Chrome has an extremely annoying defect in its implementation of CSS3 text-shadow. The sub-pixel antialiasing is turned off when text-shadow is applied. No amount of -webkit-font-smoothing will ...
39
votes
3answers
3k views

See :hover state in Chrome Developer Tools

I want to see the :hover style for an anchor I'm hovering on in Chrome. In Firebug, there's a Style dropdown that allows me to select the different states for an element. I can't seem to find anything ...
39
votes
10answers
19k views

How do I stop Chrome from yellowing my site's input boxes?

Among other text and visual aids on a form submission, post-validation, I'm coloring my input boxes red to signify the interactive area needing attention. On Chrome (and for Google Toolbar users) the ...
38
votes
8answers
10k views

How can I use jQuery in Greasemonkey scripts in Google Chrome?

As some of you may know, Google Chrome has put some severe limitation on Greasemonkey scripts. Chromium does not support @require, @resource, unsafeWindow, GM_registerMenuCommand, GM_setValue, or ...
37
votes
2answers
7k views

Updating address bar with new URL without hash or reloading the page

I either dreamt about chrome (dev channel) implementing a way to update the address bar via javascript (the path, not domain) without reloading the page or they really have done this... However...I ...
36
votes
2answers
10k views

Chrome desktop notification example?

Is there an hosted example code (Javascript) that demonstrates Chrome desktop notifications? I'd like that use that in my own code. Update: Here's a blog post explaining webkit notifications with an ...
35
votes
8answers
31k views

Chrome says “Resource interpreted as script but transferred with MIME type text/plain.”, what gives?

In FF and all, my javascript works fine. But in Chrome it gives this message: "Resource interpreted as script but transferred with MIME type text/plain." I have checked all the script tags and they ...
33
votes
3answers
859 views

Chrome thinks 99,999 is drastically different than 100,000

I just ran into a very interesting issue when someone posted a jsperf benchmark that conflicted with a previous, nearly identical, benchmark I ran. Chrome does something drastically different between ...
33
votes
4answers
5k views

Google Chrome's Javascript console keyboard shortcuts

I would like to debug my javascript application using Google Chrome 3's developer tools. Everything fine and ok, until I actually want to start debugging. I can set breakpoints etc., but I don't want ...
33
votes
12answers
16k views

Detect blocked popup in Chrome

I am aware of javascript techniques to detect whether a popup is blocked in other browsers (as described in the answer to this question). Here's the basic test: var newWin = window.open(url); ...
33
votes
25answers
31k views

Problem with background color and Google Chrome

Sometimes I get a broken background in Chrome. I do not get this error with any other browser. This is the simple CSS line responsible for the background color of body: body { background: ...
33
votes
8answers
14k views

Where can I find and submit bug reports on Google's Chrome browser?

It will be important for developers wanting to develop for the chrome browser to be able to review existing bugs (to avoid too much pulling-out of hair), and to add new ones (to improve the thing). ...
31
votes
5answers
4k views

Chrome auto formats input=number

I have a web application where I'm specifying an input field to be a number using the HTML5 property type="number". <input type="number" value="123456" /> By specifying the type, Chrome ...
31
votes
6answers
52k views

How do I use the JavaScript Console in Google Chrome?

I have a Font Detect code that does not work in Google Chrome, and I thought I would find out what is going on. But I still can't figure out how I can add breakpoints or do watch etc. I am looking for ...
30
votes
3answers
1k views

Math.random() returns value greater than one?

While playing around with random numbers in JavaScript I discovered a surprising bug, presumably in the V8 JavaScript engine in Google Chrome. Consider: // Generate a random number [1,5]. var rand5 ...
30
votes
3answers
5k views

Firefox and Chrome slow on localhost; known fix doesn't work on Windows 7

Firefox and Chrome are known to be slow on localhost when IP6 is enabled. In previous versions of Windows, the simplest fix is to comment out this line from the hosts file, as explained in the answer ...
29
votes
2answers
1k views

How to test chrome extensions?

Is there a good way to do this? I'm writing an extension that interacts with a website as a content script and saves data using localstorage. Are there any tools, frameworks, etc. that I can use to ...
26
votes
7answers
10k views

Google Chrome form autofill and its yellow background

I have design problem with Google Chrome and its form autofill function. If Chrome remembers some login/password it changes a background color to a yellow one. Here are some screenshots: How to ...
25
votes
6answers
9k views

Why does Chrome ignore local jQuery cookies?

I am using the jQuery Cookie plugin (download and demo and source code with comments) to set and read a cookie. I'm developing the page on my local machine. The following code will successfully set a ...
24
votes
7answers
1k views

Web Scraping in a Google Chrome Extension (JavaScript + Chrome APIs)

What are the best options for performing a Web Scraping from within a Google Chrome Extension with JavaScript and whatever more technologies are available. Other JavaScript-libraries are also ...
24
votes
4answers
2k views
+350

How do I auto-reload a Chrome extension I'm developing?

I'd like for my chrome extension to reload every time I save a file in the extension folder, without having to explicitly click "reload" in chrome://extensions/. Is this possible? Edit: I'm aware I ...
24
votes
4answers
10k views

Request Monitoring in Chrome

In Firefox, I use Firebug which allows me to view every http request my ajax calls are making. I've switched over my development to Chrome and am liking it so far. My only complaint, however, is ...
23
votes
1answer
2k views

Google Plus button code warns: “Unsafe JavaScript attempt to access frame” in Chrome

I am trying to add a Google Plus button to my site, and keep getting JavaScript safety warnings, despite the fact that I am using Google's recommended code, on Chrome. I have reproduced the errors ...
22
votes
2answers
1k views

Chrome fails to free memory, garbage collection doesn't occur as expected (Mootools/MochaUI library)

Background: I'm currently working on an intranet site that makes use of the MochaUI library (working from the virtual desktop demo). I'm using Mootools 1.2.4 and MochaUI 0.9.7. The windows that are ...
22
votes
3answers
5k views

MIME type warning in chrome for png images

Just ran my site in chrome and suprisingly it comes up with this warning for each of my .png images: Resource interpreted as image but transferred with MIME type application/octet-stream. Anyone ...
21
votes
6answers
458 views

Page reload in Chrome unnecessarily triggers bound events just prior to reloading the page

Hope someone has a good answer to this: Why does Chrome (14.0) triggers the document ready and window load events when I refresh the page? Note that I am not talking about what happens when the new ...
21
votes
4answers
2k views

Has anybody used Google 'Omaha' (their auto-update engine for Chrome)?

Google have open-sourced the auto update mechanism used in Google Chrome: http://code.google.com/p/omaha/ It seems quite complicated and difficult to configure for anybody who isn't Google. Has ...
21
votes
9answers
12k views

Box-shadow and border-radius bug in Chrome

I've been experimenting with CSS3 and found something strange. Heres's the part of DIV style: border:#446429 solid 1px; border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px; ...
20
votes
7answers
11k views

Is there a way to get the xpath in google chrome?

I have a webpage I want to use with YQL. But I need the xpath of a specific item. I can see it in the debug tools area for google chrome but I don't see a way to copy that xpath. Is there a way to ...
20
votes
9answers
1k views

who wrote 250k tests for webkit?

assuming a yield of 3 per hour, that's 83000 hours. 8 hours a day makes 10,500 days, divide by thirty to get 342 mythical man months. I call them mythical because writing 125 tests per person per week ...
20
votes
2answers
2k views

Using the Google Chrome Sandbox [closed]

There are several resources out there that explain how the sandbox in Chrome works and what it does to protect users from malicious code. Chromium Blog Chromium Developer Documentation Sandbox FAQ ...
20
votes
6answers
6k views

Tips / Resources for building a Google Chrome plugin

After test driving Google Chrome for 30 minutes or so, I like it, even if it seems bare-bones at the moment. The obvious way to add a few things I can't live without would be through plugins. Does ...
19
votes
3answers
3k views

How can I make setInterval also work when a tab is inactive in Chrome?

I have a setInterval running a piece of code 30 times a second. This works great, however when I select another tab (so that the tab with my code becomes inactive), the setInterval is set to an idle ...
19
votes
2answers
383 views

When Profiling Javascript in Chrome how do I know I've handled Memory Leaks?

I've been working on a game in for HTML 5 using the canvas tag, and I've build up quite a code base to cover my requirements. I also want to make sure I'm covering up all my memory leaks. I have ...
19
votes
4answers
17k views

How to remove border around text/input boxes? (Chrome)

Can anyone explain how to remove the orange border around text/input boxes? I think it only happens on Chrome to show that the input box is active. Here's the input CSS i'm using: input { ...
19
votes
5answers
19k views

Problems with jQuery getJSON using local files in Chrome

I have a very simple test page that uses XHR requests with jQuery's $.getJSON and $.ajax methods. The same page works in some situations and not in others. Specificially, it doesn't work in Chrome on ...
19
votes
2answers
8k views

Selecting text on focus using jQuery not working in Safari and Chrome

I have the following jQuery code (similar to this question) that works in Firefox and IE, but fails (no errors, just doesn't work) in Chrome and Safari. Any ideas for a workaround? ...
19
votes
2answers
32k views

Weird Chrome prototype/jQuery conflict

We have an application with legacy code that relies on prototype, but we've found it to be too 'heavy' for most of the places we want to use it and and have found jQuery to be a better fit for how we ...
19
votes
18answers
981 views

Should small companies code their sites to support Chrome?

I work on small sites for tanning salons and stuff. We don't support ActiveX-specific stuff on IE, and we support Firefox. I've noticed some weird behavior with Chrome. My browser stats say <1% of ...
19
votes
17answers
1k views

What does Google Chrome mean to web developers?

From a web developer point of view, what changes are expected in the development arena when Google Chrome is released? Are the developments powerful enough to make another revolution in the web? Will ...

1 2 3 4 5 124