A free, open source and cross-platform web browser created by Mozilla.
5
votes
0answers
412 views
XMLHttpRequest in google-chrome is not reporting progress events
Hi all I have this code:
function test()
{
req = new XMLHttpRequest();
req.upload.addEventListener("progress", updateProgress, false);
req.addEventListener("readystatechange", ...
4
votes
0answers
56 views
How to run multiple Selenium Firefox browsers concurrently?
Trying to run multiple processes concurrently on the same machine, which use Selenium. What would happen is something like this:
python my_selenium_process1.py &
python my_selenium_process2.py ...
4
votes
0answers
168 views
socket.io throws NS_ERROR_NOT_CONNECTED in firefox
Some of our windows users are experiencing trouble with socket.io while using Firefox 12. One person was using XP, the other Vista. Firefox 13 is fine.
uncaught exception: [
Exception... "Component ...
4
votes
0answers
115 views
Are there standalone libraries for Firefox Sync?
For example, I'd like to write a script that retrieves all my bookmarks that contain the word "html5" in the title, and adds the tag "web-development" to those bookmarks.
I know there is an Client ...
4
votes
0answers
493 views
Aborted errors in Firebug when loading a Drupal 7 page via https
Everyone in our web development unit get Firebug "Aborted" errors on random css, js and image objects when we load one of our Drupal 7 sites in https (and a force-refresh). We don't know when the ...
4
votes
0answers
574 views
What are the limits of using sockets for Inter-Process Communication?
I am creating a Firefox extension that allows using Standard ML (SML) as a client-side programming language in Firefox. The way it works is the following:
The extension launches a PolyML process ...
3
votes
0answers
491 views
NS_ERROR_FAILURE : Failure in Firefox
I'm using javascript's XMLHttpRequest object to send a request to another page (not on the same server or domainname ) I get a ns_error_failure error in firefox, but the Javascript works in Google ...
3
votes
0answers
659 views
Firefox 19 print PDF from JavaScript
I have a "Print" button which invokes the following JavaScript
window.frames.myPdfFrame.print();
where "myPdfFrame" refers to an iframe with a PDF for the src.
In Chrome and Firefox 18 (and below) ...
3
votes
0answers
96 views
Cross-Domain XmlHTTPRequest in chinese after firefox update
My Firefox just did an update, and now all my XMLHttpRequest (that worked 10 minutes ago) answer in Chinese...
I can read this as responseText in firebug :
...
3
votes
0answers
191 views
Three.js: Firefox: Incorrect viewport size: multiple views
The multiple view is not quite drawn the full size; it is about 10% smaller than the window, with white space at the top and the right. (See image below).
The problem applies to this Three.js ...
3
votes
0answers
189 views
Automatically close Chrome or Firefox like IE when ending a Visual Studio debugging session
When I debug a web project in Visual Studio 2010 in IE, the browser closes automatically when I end the debug session. Similarly, when I end the browser first, so ends the debug session. I understand ...
3
votes
0answers
93 views
Communication between page-mod and context-menu in Firefox Addon SDK
Via the context-menu module I detect over which DOM element the user clicked my custom context menu item "Mark":
var menu = require("context-menu").Item({
label: "Mark",
contentScriptFile: ...
3
votes
0answers
161 views
Ajax call on onbeforeunload not working in Firefox - works in IE
I am using the following code which runs fine in Internet Explorer but is not working in Firefox.
When the user closes the browser, a webmethod has to be called, which updates the bit field ...
3
votes
0answers
592 views
Firefox X11 in Mac OSX Moutain Lion 10.8
We are running selenium tests (firefox automation) and I would like to forward it to the background using the headless gem. (https://github.com/leonid-shevtsov/headless).
Everything was working well ...
3
votes
0answers
177 views
isotope cssHooks overwrite jQuery.transit cssHooks
I have a strange issue where, I can not find any simple solution. Using the isotope Plugin and the jQuery.transit Plugin in the same document, makes some of the jQuery.transit plugin supported css3 ...
3
votes
0answers
154 views
HTML5 FileList empty in FireFox
I'm writing this HTML5 music player that works by dragging music files onto it. (will soon use WebRTC too)
http://pepijndevos.nl/KjuMusic/
It works in Chrome, it used to work in Firefox, and still ...
3
votes
0answers
679 views
Aptana Debugger incompatible with Firefox 9.0.1 - what to do?
When I try to start Debug in Aptana 3, the Aptana main page isn't loaded, and I only receive a sockets error message.
Firefox 9.0.1 reports that the Aptana Debugger is incompatible with this ...
3
votes
0answers
52 views
Add App-Tab in Firefox
On IE9 there's msAddSiteMode() to ask the user if he wants to pin your site to his browser/taskbar.
Is there an equivalent or similar function to offer the user to add your site as an App-Tab on ...
3
votes
0answers
120 views
WebM audio issues in Firefox 4. Even tested in FF 7
I am facing a rather strange issue with Firefox. This is the webm file that I am trying to play:
http://www.filesonic.in/file/2825764155
This plays fine in Firefox but problem comes when I try to ...
3
votes
0answers
317 views
XPCOM Socket is closing. How to keep it alive?
I'm currently developing a firefox add-on that is a client who connects using TCP sockets to a server.
In my little test everything works ok, the client(ff add-on) connects to the server(designed in ...
3
votes
0answers
734 views
YouTube videos not playing in chromeless player in Flash using Zend_GData_Youtube class in PHP to pass results to flash (Works fine on Mac Safari??)
I have been noticing some strange (but consistent) behavior with the
chromeless YouTube Player API. I have a Flash AS2 SWF that uses
cueVideoById() to show the thumbnail images of videos which works ...
3
votes
0answers
402 views
XPCOM Shockwave Flash C++
I recently started "playing" with xpcom, and I would like to know if there is a way
do interact with a Shockwave flash element.
In IE I can use the IShockwaveFlash interface, but for the Firefox I ...
3
votes
0answers
259 views
Browser extension to create independent cookie stores narrower than spec
Does anyone know of a browser extension (preferably Firefox) that allows you to create independent cookie stores at a finer (and configurable) granularity than the specification?
E.g. say ...
2
votes
0answers
157 views
js causing firefox to crash
I apologize for the vague question, but I don't know how to better describe what is happening.
I'm developing a web app that so far is strictly coded in js (no server side code yet). I'm using an ...
2
votes
0answers
105 views
Server-Side workaround to force client to ignore PDF.js (Firefox's built in viewer saves with .aspx extension)
Firefox's built in PDF viewer (PDF.js) has an issue with saving PDF files using the URL as a guide (thus saving them with a .aspx extension than a .pdf one). Has anyone found a temporary workaround ...
2
votes
0answers
77 views
z-index is overlap css 3d transform position in FireFox
I create some 3d demo: https://dl.dropboxusercontent.com/u/20810772/model/field.html
webkit render it fine.
But in FireFox 19/ FF nightly z-index overlap 3d-transform position of elements.
If element ...
2
votes
0answers
127 views
C# Google Login API
I'm currently developing a web site and Google Login is one of the features. So far so good. Google has a lot of documentation of its own API and some examples. BUT, here is my trouble.
I'm using C# ...
2
votes
0answers
114 views
jQuery Mobile Select Menu in Collapsible Header - Firefox doesn't work
I have a data-role="collapsible" with a select menu in the header. In firefox, when you click on the select menu and choose an option, it doesn't change the option (onchange never fires). Trying to ...
2
votes
0answers
162 views
C# get URL from firefox but don't use DDE
For detect URL in firefox I use DDE
DdeClient dde = new DdeClient("Firefox", "WWW_GetWindowInfo");
dde.Connect();
string url1 = dde.Request("URL", int.MaxValue);
dde.Disconnect();
temp = ...
2
votes
0answers
74 views
Firefox: blur event triggering only on second click outside the selected element any way to fix it?
Use this jsfiddle from one of my earlier questions for an example. It's quite problematic for many of my design choices.
$(document).ready(function() {
$('select').on('click', function() {
...
2
votes
0answers
677 views
Font-Smoothing in Firefox
Using Google WebFonts ("Oswald" in this case), I have found that my fonts are rendered bolder than they should be. I have solved this problem in webkit based browsers using:
-webkit-font-smoothing: ...
2
votes
0answers
54 views
(NS_ERROR_FAILURE) Mozilla Browser
I added an event handler to handle a mousedown event in firefox but I get a NS_error failure message when this event is encountered, the error message is displayed on firefox but chrome handles the ...
2
votes
0answers
109 views
Firefox add-on error with jquery 1.9.1
Using Firefox 18 with the Jetpack SDK. Upon injecting jquery-1.9.1.js into my page, I get the following error in the console:
Traceback (most recent call last):
File ...
2
votes
0answers
62 views
Requests done in the onModuleLoad are not cached at all. Mainly in FireFox
I faced an issue in which requests that are done in the onModuleLoad event are not being cached in most cases (mainly with FireFox). I checked the network console on FireBug and it almost always shows ...
2
votes
0answers
243 views
How to debug a selenium request spec which fails when run in Jenkins build (but passes when run manually as a spec)
I have a request spec written in rspec, using capybara:
scenario "request for a page with js driver", :js => true do
visit "/foo" # redacted here, in my spec it's a legitimate URL
end
In my ...
2
votes
0answers
148 views
JsPrintSetup Firefox plugin custom page size
I am trying to print bills in my web application, a user would print bills from a web browser. It doesn't need to be compatible with other browsers, its okay if it only works in firefox. The problem ...
2
votes
0answers
38 views
AjaxCalendar Extender not showing Saturdays in Chrome, Firefox or Safari
Having a bit of trouble with the CalendarExtender here on a project. Basically, it's not showing Saturdays in Chrome, Firefox or Safari, but shows them perfectly in IE. Obviously, this is a bit of a ...
2
votes
0answers
92 views
Firebug disabled in WebDriver after adding to profile
I can't seem to figure out why my Firebug extension shows that its disabled when I try to click on it within the Firefox WebDriver.
Here's what my code looks like, I got some of the code from this SO ...
2
votes
0answers
220 views
Jerky drag action with kineticjs in firefox
I seem to have found a problem with Kineticjs in Firefox that produces slow and jerky dragging in the firefox browser (version 17.0.1) and kineticjs v4.3.0. FYI:I'm also running Fedora 17. This ...
2
votes
0answers
154 views
Canvas animation stutters in FireFox but is perfect in Chrome
I recently got about doing some HTML5/Canvas stuff and was going about my business quite happily, testing stuff in Chrome, until I decided to try what I have been working on in Firefox... doesn't work ...
2
votes
0answers
143 views
jQuery geolocation form submit anomaly in Firefox / Windows 7
The following code submits correctly in IE, Safari, Chrome on Mac and Windows, Firefox in Mac, but in Firefox (17.01) on Windows 7 the submitForm function is never called.
jQuery
...
2
votes
0answers
79 views
A jquery select options element bug in firefox on mac
i have this select element that on change it sends an ajax call and do some stuff,
the select element works fine on firefox , google chrome, and IE (windows), but wouldn't work in firefox on mac, ...
2
votes
0answers
107 views
jQuery setInterval on Firefox
http://yo2mo.legendarylion.com
I'm not primarily a jquery or javascript programmer, there may be a more efficient way to accomplish this, but ultimately I'm after debugging the script failing after 8 ...
2
votes
0answers
154 views
Set cookies for all browsers
I want to set a domain-specific cookies for FireFox and Chrome, something equivalent to InternetSetCookie() API, which takes a URL and a cookie name and value and sets it for all browsers. I have ...
2
votes
0answers
126 views
firefox memory leak when adding Video tags dynamically
It seems when I play my solution in firefox the "heap unallocated" keeps growing as I dynamically replace objects/video tags.
$( buffer ).empty();
$( buffer ).html( '<object id="' + id + '" ...
2
votes
0answers
126 views
Firefox rewrites GET request
Background: I have a Java webserver class (NanoHTTPD) which my application extends by adding sessions, page templates, authentication, and dynamic content. I wanted to make the application self ...
2
votes
0answers
153 views
Font face rendering on Firefox 17 for Mac
This happens only on Firefox for Mac. I tested Chrome, Opera, Safari, Firefox (Mac 10.7.5) and IE9 and Firefox (Win7).
Firefox 17 on Mac OSX 10.7.5 (both local and remote) renders icons generated ...
2
votes
0answers
273 views
save dialog javascript firefox
Following code finds all links with in ul li and get their href image path and add event so when user click on link it opens save dialog. This only works in Internet Explorer. How can I do this for ...
2
votes
0answers
68 views
Debugging extension code in firefox (javascript debugger/venkman)
I'm currently working on a simple extension for Firefox. Now I would like to be able to issue some commands in a console in the extensions context.
I have installed the Javascript Debugger addon ...
2
votes
0answers
59 views
Contenteditable on label tag does not work in firefox
Is there any way to make the text of a label editable in Firefox other than placing it in a span?
<h1>Content Editable Test</h1>
<p contenteditable="true">Can edit ...
