The firefox4 tag has no wiki summary.
48
votes
8answers
22k views
Error: Attempt to run compile-and-go script on a cleared scope
Since upgrading to Firefox 4.0, I've noticed that I'm occasionally getting an error in the console stating:
attempt to run compile-and-go script on a cleared scope
The only information I can ...
20
votes
2answers
4k views
Firefox 4 onBeforeUnload custom message
In Firefox 3, I was able to write a custom confirmation popup with:
window.onbeforeunload = function() {
if (someCondition) {
return 'Your stream will be turned off';
}
}
Now in Firefox ...
19
votes
3answers
7k views
Chrome : make textareas which are not resizable
By default, Chrome makes my textareas resizable. I wish to control this and either make them only vertically resizable, or not at all.
How can I achieve this ?
12
votes
1answer
2k views
Alternatives to FireWatir working with Firefox 4 or higher
It seems, from what I read, that we will not have a JSSH for Firefox 4, and therefore no FireWatir.
I have several scripts that run well on FireWatir, and of course I would like to update my Firefox ...
10
votes
4answers
405 views
Changing Window.prototype.open in a way that isn't detectable/reversible
I am looking into ways to extend Firefox pop-up blocking from an extension. One option is replacing window.open() (or rather Window.prototype.open()) in the webpage by a wrapper function. An important ...
7
votes
2answers
703 views
CSS Transparent Border Problem In Firefox 4?
I'm trying to create a pure CSS triangle for a tooltip. All browsers looks fine except for the latest Firefox 4. Here's the code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta ...
6
votes
2answers
527 views
Memory leaks with jQuery in IE 7/8/9 and FF 4
I have been struggling with some memory leaks using jQuery in all major browsers, and am looking for some help. I've read many articles on memory leaks, references, circular references, closures, ...
6
votes
2answers
637 views
How do I get watir-webdriver to start Firefox 4 with Firebug?
Any ideas? I've tried setting webdriver.firefox.useExisting=true as described in the link below hoping to reuse an existing window with firebug enabled, but no such luck.
...
6
votes
5answers
724 views
jQuery in Firefox 4
This code was working fine until i went to firefox 4 and now it requires two clicks on the same image for the resize to work? Any thoughts? Here is the code.
$(document).ready(function(){
...
5
votes
1answer
223 views
Creating Firefox 4-like menu in WPF
I was wondering if anyone knows how to do this... I know how to do the titlebar button and everything, its just the menu itself I am having troubles with, for example the buttons are split, and they ...
5
votes
1answer
551 views
How to add a notification on the app tab of the Firefox 4?
The FF4 delivers an app tab feature and it looks like both Gmail and Twitter have some notification code when a new mail or tweet come the app tab would look like a litter lighter.
Does any know how ...
4
votes
2answers
418 views
Firefox 4.0 always refreshes the Silverlight XAP File
I've trouble with the new FireFox 4.0 Release.
In my Website i hosted a Silverlight Object, named Visualisation.
In Firefox 3.6, Chrome, IE 7, 8, 9 the Browsers load the XAP File Once and get it ...
4
votes
2answers
321 views
Upgrading an addon to be compatible with Firefox 4.0, but trying to keep it compatible with 3.x also. Advice?
I have an add-on which was written for Firefox 3.6 and now I'm upgrading it for Firefox 4.0, while trying to also keep it compatible with 3.6. Does anyone have any experience with trying to do this, ...
3
votes
1answer
142 views
firefox add-ons sdk vs XUL
I've just started creating my first firefox add-on and I'm currently in the learning stage, to familiarize with the api.
However I found a little ambiguous what method should I use. After I've read ...
3
votes
4answers
178 views
Firefox4/5 not running JS attached to an AJAX response using HTML_AJAX pear library
I am using the HTML_AJAX package in PEAR (admittedly an old library, but it has worked fine for me for a couple of years and I don't want to leave my infrastructure).
The problem I am having is that ...
3
votes
2answers
134 views
Javascript and Firefox 4 issues
The code below works fine in FF3.X and IE7 to 9, but not in FF4.
I have this code in 2 places in my file:
var arguments = "method=getoptions";
arguments += ...
3
votes
2answers
227 views
Firefox 4 Text Rendering Bug
I've run into a bug with my app that I traced down to inconsistent text rendering between Chrome and Firefox 4.
Chrome tells me that a certain string of text is 215px wide whereas Firefox 4 tells me ...
3
votes
0answers
533 views
MaintainScrollPositionOnPostback Does Not Work In Firefox 4.0
MaintainScrollPositionOnPostback stopped working in Firefox 4. This breaks our websites and needs to be fixed.
I've added the following to our App_Browsers folder in our .NET 4/IIS7 website:
...
3
votes
3answers
79 views
Preventing FF4's new drag feature
Is there a way to prevent this in Firefox 4.0 using CSS? It's where you click on a link (or anything) and begin to drag it, and another semi-transparent image of it appears under your cursor as you ...
3
votes
2answers
770 views
Firefox 4 : Is there a way to remove the red border in a required form input?
When required is defined in a form field, Firefox 4 automatically shows a red border to this element, even BEFORE the user hit the submit button.
<input type="text" name="example" value="This is ...
3
votes
1answer
216 views
Firefox 4: Dynamically opened window opens new tabs in old window (i.e. window.opener)
This seems to be a strange change of functionality since Firefox 4. After opening a window with window.open(), when clicking links in the opened window with the middle mouse button (or right-clicking ...
3
votes
3answers
7k views
Why “Prevent this page from creating additional dialogs” appears in the alert box?
In my Rails 3 application I do:
render :js => "alert(\"Error!\\nEmpty message sent.\");" if ...
Sometimes, below this error message (in the same alert box) I see: "Prevent this page from ...
3
votes
1answer
433 views
WebM Video won't play in Firefox 4
I cannot get this video to play in Firefox 4.
http://m1.animedlc.com/webm_test/
It plays fine in Chrome. I haven't tried anything else besides FF4 and Chrome. I converted it from a avi file. Any ...
3
votes
1answer
126 views
Updating a XPI to be compatible with FF 4.0?
An extension that I wrote stopped working as the user base started migrating to Firefox 4 and now I'm trying to find ways to update it to be compatible.
I've read thru the various blog posts / pages ...
3
votes
2answers
1k views
Firefox 4 file input width bug?
3I'm changing the width of a file input HTML tag:
<input type="file" id="newFilename" name="Filename">
input[type="file"] {width:380px !important}
In Firefox 3, Chrome and Safari it works ...
3
votes
1answer
142 views
How to prevent FF4 popup menu from being transparent?
I develop "Hebrew Calendar extension" (https://addons.mozilla.org/en-us/firefo ... -calendar/) and under FF4 extension shows transparent popup menu
Could you help me to understand how to fix the ...
3
votes
1answer
338 views
Radio buttons (with uppercase 'type' in the HTML) in Watir Firefox Webdriver
I use Firefox 4 with Watir Webdriver.
I have a web page with the following:
<input id="RadioM" type="RADIO" value="M" name="Field_SEX">Male
<input id="RadioF" type="RADIO" value="F" ...
3
votes
2answers
900 views
Firefox 4 with watir webdriver: Need help using helperApps.neverAsk to save CSV without prompting
I learned how to use Firefox 4 with watir and webdriver (on Win7 x64), setting profile items. Example:
profile = Selenium::WebDriver::Firefox::Profile.new
profile["browser.download.useDownloadDir"] = ...
3
votes
2answers
1k views
GeckoFX Update for Gecko 2.0?
I was really excited when I found GeckoFX last month. My employer wants to distribute an embedded browser with our desktop application (to smooth the transition from desktop-based apps to web-based ...
3
votes
2answers
864 views
JSONP with Firefox 4 Not Working?
We have been using JSONP (http://code.google.com/p/jquery-jsonp/) to do some localhost calls to retrieve JSON objects... I have upgraded to Firefox 4 today and now the code we were using doesn't work ...
3
votes
2answers
4k views
can I use Selenium IDE 1.0.10 with FF4.0 yet?
I've managed to install Selenium IDE 1.0.10 into FF4. Selenium is showing in the Add Ons Manager and I've restarted the browser. However, I don't see any way to launch the IDE. Is there something I'm ...
3
votes
0answers
667 views
Has anyone successfully run a WatiN test against FireFox 4?
It looks like the jssh plugin (required to run WatiN) still needs work going by FireFox Bug 586869, to quote:
Probably obvious to anyone who ought
to be trying to maintain jssh, but, to
get it ...
3
votes
1answer
404 views
Firefox extension localStorage events
I am making a Firefox extension to determine when a "storage" event is fired from the localStorage.
In Firefox 3, I have this line to bind the storage event in the window to a function in the ...
2
votes
3answers
53 views
Addon cannot be installed by an error of not be able to modify the needed file
I developed an addon and it run perfectly on my PC. But when I send it to install on our client, it got an error that say something like this "Your addon cannot be installed because Firefox couldn't ...
2
votes
1answer
221 views
Use Remote Content Script File/Javascript in Page-Mod
Is there any way to easily use a remote javascript file as a content script with the page-mod API?
I am trying to build some simple addons for my own use to automate some repetitive stuff. Because ...
2
votes
1answer
553 views
Kiosk mode for FireFox 4.0 on execute
I have an Acer iconia a500 with Android 3.1, FireFox 4.0 installed (for websockets and other HTML5 goodies). I need to run FF in a Kiosk mode for our application.
Even better if someone out there ...
2
votes
1answer
94 views
Isolate jQuery FF4 problem
In a response to another user, I've upgraded the jQuery plugin iCheckbox to work with jQuery 1.5 and 1.6 (in Safari). This is described in my answer here:
jquery 1.4.2 working for iCheckBox and not ...
2
votes
1answer
148 views
In my firefox extension, onUninstalled event doesn't seem to fire
Firefox 4 exposes some events to detect when the user is uninstalling an extension. I can get onUninstalling to fire (when the user clicks to remove an extension), but I can't get anything to happen ...
2
votes
1answer
285 views
How to use nsITimer in a Firefox Extension?
I am working on a Firefox extension, and wish to make use of a timer to control posting of data every 60 seconds.
The following is placed inside an initialization function in the main .js file:
var ...
2
votes
3answers
292 views
HTML5 Data URI fails when a base64 null is followed by an =?
I'm doing some pretty unholy things with JavaScript, and I've run into a weird problem.
I am creating binary data that fills a buffer of a static size. If the content doesn't fill the buffer, the ...
2
votes
1answer
101 views
Why my animation gets stuck sometimes in Firefox?
I am trying to create an animation using HTML5 canvas and Javascript. Although it works perfectly in Google Chrome, but in Firefox this gets stuck sometimes.
Live demo: http://jsfiddle.net/UbTwh/ .
...
2
votes
1answer
519 views
Why does firebug disappear on page refresh?
Hope I can get some help here.
I am using latest version of firefox and firebug. I want to watch network activity when I reload a page and view my site. But as soon as I reload then firebug ...
2
votes
1answer
111 views
Jetpack and cookies
I'm developing an addon using Jetpack and the SDK. I am using cfx to run my addons when testing.
The app posts some text when highlighted to twitter.
The problem is each time I modify the code I ...
2
votes
1answer
774 views
Why does Firefox 4 absolutely position fieldset legends differently than other browsers?
Why does Firefox 4 absolutely position fieldset legends differently than other browsers?
Test page:
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<meta ...
2
votes
2answers
159 views
HTML5 URL Input Box without Protocol
When you use a input type of "url" instead of the standard "text". Firefox 4 will not submit the form without "http://" or "https://" in the input box.
All I'm after is a URL without the protocol ...
2
votes
2answers
1k views
Using watir-webdriver, how can I click a table row?
I'm trying to convert my old watir scripts to use watir-webdriver instead, as that will (eventually) support IE9 and Firefox 4. $browser.table_row(:id => "account_1").click is what I used to click ...
2
votes
1answer
2k views
Firefox throws error - regular expression too complex
I'm doing a load() on a page using Jquery, using Jquery Minified 1.3.2 and in ff4, it's telling me regular expression is too complex, and not completing the load. Works with no errors at all in ...
2
votes
3answers
2k views
Javascript document.form.submit() not working with Firefox 4.0 and IE8
I'm trying to submit a form with javascript. Works fine with Firefox 3.6, but doesn't work in Firefox4.0 and IE8.
Code:
<table>
<tr>
<td>
<form ...
2
votes
2answers
150 views
Debug print from a bootstrapped Firefox4 extension
I'm rewriting a Firefox extension to be bootstrapped (restartless). I've patched rdf with a node < bootstrapped >. Then I introduced file "bootstrap.js":
function startup(data, reason) { ...
2
votes
2answers
288 views
Scroll Position ASP.NET hidden elements are not present in Firefox 4
We're having a problem with Firefox 4 and javascript that references the SCROLLPOSITION asp.net hidden fields. The are really two problems. First, the following fields don't seem to be present when ...