google-chrome

CSS/javascript hover does not display correctly in chrome

I am building a site that has an image map menu with a popup box that is supposed to pop at the mouse when the mouse is hovering over a particular area. It works great in firefox and IE but when I load the page in chrome the boxes appear as if the page were not scrolled. it works fine if the page is scrolled all the way to the top, but...

Non-writable character issue

Im trying to build a list of id's in a textbox. Which works fine in IE and Firefox but not in chrome. The list that is created is using String.fromCharCode(20) to separate the values. (im using this as the values could be any character so I need to use non writable characters like this and 17) What happens in Chrome is it seems to remo...

Using XHR to send large amounts of data via POST.

Hello, I have an XHR that uploads large amounts of data to the server. This XHR dies intermittently and seemingly without pattern. Currently my code looks like this: function makeFormData(data) { var formdata = ""; for (var key in data) { formdata = formdata + "&" + key + "=" + encodeURIComponent(data[key]); } re...

Strange Google Chrome Bug. jQuery

Hello, I have used in my site jScrollPane jquery plugin. It is normally work in all browsers except Chrome. Take a look here: http://evarivas.com/bio In my Chrome I have no problems. Scroll works normally. On another computers sometimes works sometimes doesn't. After refresh works, or doesn't work... What is this? Very strange... ...

Why do IE/Chrome initially give incorrect clientHeight and scrollHeight for a textarea?

Chrome (and IE when browsing local files) gives an initial value for the clientHeight of a textarea element that is incorrect. How do I get IE and Chrome to give the correct values? (Problem demo'ed here) I am setting the position and size of the textarea via CSS fixed/absolute positioning. Then I am checking the value of clientHeight v...

Comment author name renders nicely in Chrome, but half blank in IE 8

Hello, In the code below, the $row["username"] is the author of a comment. It renders well in Chrome, but in IE 8, only the top half of it appears. Any idea how to make it so all of it appears in IE 8? Thanks in advance, John The code: echo "<table class=\"commentecho\">"; $count = 1; while ($row = mysql_fetch_array($result)) { ...

Slight Gap Between List Items in an Unordered List

Hi, Hoping someone can assist, I am using an unordered list where the actual list items have a rounded rectangular background image. My problem is, there seems to be a slight gap between the list items in Firefox but in Google Chrome, there is no gap. If I change the css line-height value, it corrects in Firefox but then breaks google...

selenium rc googlechrome not validating session

Hi, When I try to login to googlechrome to the site http://www.pb.com/addressrightnow through the test script the login never works, chrome browser 5.0 is never able to validate session. But the same works when I manually launch chrome and login. The only difference is I start the selenium server from the test script. The same works per...

HTML5 PUT/DELETE methods not working in Chrome?

I am trying to figure out why the put/delete methods, in an HTML5 enabled site, is not working with Chrome. From what i've searched for, it sounds like it has been working for some time with Chrome, so with that said i am just looking for a few pointers to narrow down my problem. Perhaps i am implementing the form wrong, perhaps my docty...

Why is Dev Tools bar empty?

I'm using Chrome-compatible SRWare Iron 5.0.381 on XP, and was checking out what Chrome has to offer to developers, eg. inspecting the contents of the DOM of a currently-loaded web page. But when I hit CTRL-SHIFT-I, the bar is totally empty: http://img230.imageshack.us/img230/3664/srwareiron50381emptydev.jpg Does someone why this is? D...

Building a Form that allows the Browser to Prepopulate with the Username/Email & Password

Hello, Users are complaining about my site, saying that they Sign In form is "not allowing the Firefox and Chrome browsers to "remember password". You should allow people to remember the password in their browser--it will come in handy in the future on future visits." Any ideas why this would be the case? ...

Third party IPC calls to Chromium to capture/filter traffic

I want to implement a network level AdBlock/NoScript-like tool for Chromium, but Chromium Extension API can not do much about controlling raw request data. So here is the idea: Capture all HTTP queries, and cancel one if URL or MIME matches. Hand craft packets, like insert a header to an HTTP query. Can this be implemented by runnin...

How can javascript work perfectly in FireFox, but not work at all in other browsers?

I use FireFox as my main browser, especially when testing out my site, Avoru. However, when checking to see if my code was working properly across other major browsers (Google Chrome, Opera, and Safari), I found that none of my custom javascript seemed to work. Although the functions and code were clear in the page source, using typeof r...

How does webkit/chrome's WebInspector Resources Inspection work?

I always want to know how the resource inspection work in webkit/safari/chrome's WebInspector work. The browser must provide a native BPI or something for javascript to display list of queries and their timelines, what is the binary API called? Can I use the same API to write a Chromium extension? ...

Trouble with jquery load on Google Chrome

I'm creating a demo that must be in html code only (no server side code such as PHP, etc). I'd like to use jquery and the .load function to call in some content dynamically. This is working fine in Firefox, but for some reason the page I want to get is not loading in Chrome (v 5.0). The code I am using is very simple: $("div#conten...

Standalone .jar runs great, but when embedded in HTML, framerate drops to 1 fps.

I have a single .jar file that I create by using the runnable .jar file export function in Eclipse. This file runs flawlessly when you just download it and run it. Now I'm trying to embed it in an HTML file, but having trouble. Here is the standalone jar Here is the page where I attempt to embed the .jar file. I could not make it run o...

Webkit Browsers Rendering Problem for Table Depending on colspan

Please advise whether I am hallucinating... I hope so because I can't get tables to render correctly depending on the browser and I am hoping someone can provide me a solution. My problems is that some tables do not display the right side borders with browsers that use webkit, i.e. Safari and Chrome. The version of Safari I am using is ...

Event onBrowserClose for Google Chrome ?

I am developing an extension for Google Chrome browser. Background script, everytime , authorizes on a server that Though XMPP API, and Subscribed for a PubSub node. I need to unsubscribe on the exit , otherwise the dummy subscriptions are left on the server. Is There any OnBrowserClose event in Google Chrome API ? ...

xmlhttpRequest error on google chrome

I have a method in javascript that does the folowing: var X = new XMLHttpRequest(); X.open('GET',U,false); X.setRequestHeader('Content-Type','text/html'); X.send(''); where U = path to a file...example: xyz/abc.txt. It works fine on firefox, but opening it on chrome gives me the following error: Uncaught Error: NETWOR...

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

Hello. 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 { background-color:transparent; border: 0px solid; height:20px; width:160px; color:#CCC; } ...