google-chrome

Modal label elements wrapping to newline in webkit browsers

I'm currently having a problem with CSS styles in Webkit browswers (Chrome 4.0.249.89 & safari 4.0.4) in which I have a modal window that has a list of labels, radio buttons and some more text describing the what each radio button does. The modal displays correctly in FF 3.5.7 Here's the html for inside the modal, <div id="rta_top"> ...

Problem with facebook connect button in chrome (we are using django and django-socialauth)

We are using django and django-socialauth for auth with google/fb/twitter but there is a problem with the facebook connect button only in chrome (neither safari), dont shows the button. ...

WPF: Examples of using a Style on a Window.

I have created a borderless window style wherein I draw the chrome (Borders, TitleBar, Min, Max, Close, SystemMenu, etc) and I would like to check it against an existing example. Specifically for the SystemMenu but also in case I missed something. Does anyone have or know of similar examples? ...

Google chrome dropdown list options ordering seems to be incorrect

I am using the following code for rendering a select box in one of my form and when i inspects i can see the following code in Firefox <select name="make"> <option value="13501">Jeep</option> <option value="26838">Joyner</option> <option value="13658">Kia</option> <option value="13898">Lada</option> </select> But in ch...

Why is chrome so fast?

I was reading this article and Chrome seems to be way ahead of the pack. But why is it so good? It's only been around for about a year but it's much better than any of the others. Can anyone shed any technical light on this? ...

Prepending html makes Google Chrome jumpy

Hello, Currently I have a site where a bar (with various links) is prepended to the body (actually appended to the source, but it is rendered on top of the page, so prepended to the result) using javascript. This Javascript is dynamically loaded trough an init script (which loads jquery, etc). Once jquery has been loaded the script is r...

Strange looking words using webkit transform rotate in chrome

Hi, I've trying to get some vertical text on a little test webpage after reading an article on how to do this. In my CSS I have the following: #navMenu li{ list-style:none; float:left; -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=...

Google Chrome Cookies - HTTP & HTTPS

I have a site that uses www.example.com for standard pages and secure.example.com for HTTPS. I am trying to set a cookie when user logs in that will be valid on both the HTTP & HTTPS versions of the site. I am doing this by setting path to "/" and domain to ".example.com". This works fine in Firefox and Internet Explorer, but in Chrome ...

How do you configure browser proxy settings in a centralized fashion

How do you configure browser proxy settings in a centralized fashion? Our development environment consists of many operating systems (Win XP, Win 2k3, Ubuntu Linux) and we usually run various browsers (Firefox, Chrome, IE, Safari) on each dev machine, to test our applications. Managing and configuring browser proxy settings on each brow...

Font-size <12px doesn't have effect in Google Chrome

Elements with css font-size <12px doesn't have effect in Google Chrome - remains font-size 12px. What should I do? My Google Chrome browser uses default settings. My version is 4.0.249.89. I am using Windows XP. You can paste the following code to your Google Chrome to test it: <html> <body> <p style="font-size:6px;">test 6px</p> <p ...

dojo and Displaying Inline SVG

I am attempting to display a dynamically created SVG inline in a dojo based application and am running into some difficulty. When I navigate directly to the SVG, it renders fine in Firefox 3.5/3.6 and Chrome, but when I inline it, verifying I have the right DOCTYPE and XML namespaces, both Firefox and Chrome just display a pile of text ...

Injecting JS functions into the page from a Greasemonkey script on Chrome

I have a Greasemonkey script that works just fine in Firefox and Opera. I struggle with getting it to work in Chrome, however. The problem is injecting a function into the page that can be invoked by code from the page. Here's what I'm doing so far: First, I get a helper reference to the unsafeWindow for Firefox. This allows me to have ...

Chrome open selectbox set cursor to text

Hi, Do you know why Chrome sets cursor's shape into the "text" one, when over an open selectbox ? If I set the CSS to: select { cursor: pointer; } It sets the cursor when the mouse is over the selectbox, but when you click to open the list, it comes back to the "text" shape again. Do you know how to change it to a pointer or somet...

Empty block elements (ex: <div>s) are rendered differently in Chrome and Firefox; when does it happen and who is right?

This page renders differently in Firefox and Chrome. Code <p style="border: solid 1px red">Test test</p> <p style="border: solid 1px red">Test test</p> <p style="border: solid 1px red">Test test</p> <div style="margin-bottom: 1em; overflow: auto;"></div> <p style="border: solid 1px red">Test test</p> <p style="border: solid 1px red">Te...

How to get a reference to node in DOM tree in Google Chrome debugger console

In the Google Chrome debugger, I often want to get a reference to a node in the DOM tree. I can click the "magnifying glass" button and then click the desired element in the browser window to select the corresponding node in the DOM tree displayed in the debugger. But how can I get a reference to that node in the console? If the eleme...

fancybox only works on last image in FF and chrome

In firefox Fancybox only works on the last image (last image in the source, not the visual webpage). In IE everything works fine. I changed ID into CLASS, but no succes yet. You can find the source here: http://www.luukratief-design.nl/dump/parallax/stack.html please help! Bugging me for days now. I asked this question befor, but did n...

How do I read the cache of Chrome and Firefox programmatically on the Mac?

Background I want to access the cache of Chrome and Firefox in my Cocoa application. I need to get the HTML for pages accessed recently. Safari is a piece of cake - all this information is available in SQLite data stores, but not so in Chrome and Firefox. The Problem For Firefox, the cache is in /Library/Caches/Firefox/Profiles/xxx.de...

Clicking on swf fires onBlur-Event in Chrome?

Hello everyone! I am facing a rather strange problem right now. I have a site using popup-windows and need to know about their current focus. This works rather fine and as expected, except for one situation: Using Google Chrome it looks like an open window will fire an onBlur-Event (lose its focus) when you click on an swf that is conta...

Does onbeforeunload event trigger for popup.html in a google chrome extension?

I'm writing a google chrome extension with a popup and a background page. The popup subscribes to certain events that the background generates, and I would like to unsubscribe from those events when the popup goes away. However, I don't see either of onbeforeunload or onunload events being generated from the popup. Are these events fired...

Automating Firefox and Chrome browsers

I am looking for a way to automate couple of browsers... Firefox and Chrome (for now on just Windows) from an external application/process. Is there a way to do things along these lines: 1. Start the browser with a URL 2. Have the browser load up the page, run script etc. 3. Inspect the DOM For reference, IE can be automated using the ...