A free, open source and cross-platform web browser created by Mozilla.
-1
votes
2answers
18 views
CSS float left make links not work on firefox or chrome (ie works ok)
when I add the propierty FLOAT: LEFT; to one div in CSS the links inside stop working.
The link is: www.urbanfever.es/zen
and the CSS is in here
Thanks!
0
votes
0answers
2 views
Onbeforeunload won't work in Firefox if history is remembered
I have a working Flex4 application using FORM authentication in IE using the onbeforeunload event (see below), but when the same application is run in FF, the user doesn't log out when the browser ...
0
votes
2answers
2k views
JavaScript ActiveXObject
I have a queastion about ActiveXObject in javascript. I have tryed this code in Mozila FireFox 6.0.2
var AXobj = new ActiveXObject("WScript.Shell");
AXobj.SendKeys(key);
But the error console says ...
0
votes
2answers
374 views
Firefox css float bug with a:link not in IE or Chrome
My default page works fine in ie but Firefox it has problems with the a:link.
At my page http://www.printer-ink-toner.co.uk and half way down is a link to my status on ebay.
For Firefox this link does ...
0
votes
0answers
5 views
Flexslider issue in Firefox - first slide doesn't load properly
The slider works fine in all other browsers, but when I open my site in Firefox the contents of the first slide appear for about half a second then disappear.
The other two slides load in fine, and ...
9
votes
5answers
7k views
Selenium Webdriver and Firefox 18
My Selenium tests use onMouseOver features like
List<WebElement> menuitems = getDriver().findElements(By.tagName("li"));
Actions builder = new Actions(getDriver());
WebElement menu = ...
3
votes
1answer
251 views
Is it possible to disable off-line caching for Firefox in ASP.NET (at the server level)?
How do I disable offline caching for firefox in ASP.NET or in IIS? I found this post:
Disabling browser caching for all browsers from ASP.NET
This doesn't address the issue completely. It just ...
0
votes
0answers
22 views
how to use greasemonkey to replace html
I'm new to greasemonkey and I believe it can help me to change how the website display certain content.
I would like to replace the html page a href link to img src so that the image will be ...
0
votes
0answers
12 views
How to add addons using Selenium WebDrvier
I have to test some ads on the Webpage, this adds will be displayed, when i install the ads.exe file (internally it will add firefox add-on) to the Firefox browser.
When i run the script using ...
0
votes
2answers
36 views
Positioning a absolute div in cienter of screen using jquery - does not work with firefox
i am trying to position an element in center of a screen, i am able to achieve it on chrome and safari but on firefox the jquery positioning does not happen unless i resize the window
my jquery script ...
42
votes
11answers
61k views
How to remove the arrow from a <select> tag in Firefox
Hey all, I'm trying to style a <select> tag using CSS3 (I know, custom styles for form elements is a bad idea in general). I'm getting the results I desire in Webkit (Chrome / Safari), but ...
0
votes
1answer
442 views
Svg grayscale filter in firefox error
I'm using a svg filter on the website I'm currently working on. It's supposed to desaturate the images and when I hover they should return to their normal coloured state. I used an online tutorial and ...
0
votes
2answers
32 views
Textarea overflow:auto difference in height
Following code renders a textarea which should have 3 visible rows:
<textarea id="txtInput" rows="3" cols="20" style="overflow:auto"></textarea>
However, in Firefox (version 20.0.1), 4 ...
0
votes
0answers
15 views
Python Selenium tests not working for Chrome like they are for FireFox
I have taken identical .py files, with the self.driver = webdriver.Chrome() for Chrome and self.driver = webdriver.Firefox() for Firefox. I run them from the command line using WebDriver. The FF .py ...
1
vote
4answers
1k views
Firefox: Get actual screen location of viewport
For firefox is there anyway to determine the TopLeft location of the "viewport" (ie the client area)? I know the height/width is available via window.innerHeight and window.innerWidth. But I also need ...
0
votes
0answers
14 views
Strange behaviour w/ dynamic top bar menu mouse events, in firefox
Here is a link to the item in question:
http://www.nychukdesign.com/uploads/dynamic-top-bar-nav-menu.html
All HTML, Javascript and CSS is in the one html file
Functionality description:
This is a ...
0
votes
1answer
58 views
Why is WebGL render speed so inconsistent?
In my application I plot about 8 million vertices with a single call to WebGL's drawarrays using the LINE_STRIP flag. I don't actually want one long line, I want about 200k short lines, so I cap all ...
0
votes
0answers
11 views
How to open a standalone XUL file in firefox
Is there a platform-independant method to open a XUL file via chrome:// path without any other operation to do, knowing that I have at hand a communication with XPCOM.
All XUL files that I saw are ...
-3
votes
0answers
10 views
Selenium RC Python script runs fine for FireFox but not in Chrome [closed]
I have taken identical .py files, with the self.driver = webdriver.Chrome()
0
votes
1answer
17 views
Firefox doesn't update float-dependent layout on window resize
Ran across an odd issue today. I've been working with a floated menu that works on everything I've tested thus far (not gotten to old IE versions yet...), except firefox. The page renders correctly ...
0
votes
0answers
6 views
Save and restore text selection in Gmail compose in firefox
I'm developing an addon in firefox and I need to save the selection of the page in order to show a panel over it. Im using this code
var storedSelections = [];
//Guarda en storedSelections los ...
1
vote
1answer
14 views
Firebug Layout Tab Inconsistent with Firefox Responsive Tool
The firebug Layout tab says that my viewport is 788x1280, but in the firefox responsive tool I have it is set to 804x1280. What could cause the two to be have different widths?
1
vote
1answer
30 views
Converting between int[ish] and double[ish] in asm.js
If I need to, say, find the the integer part and the fractional part of a number within an asm.js module, how do I do it? None of the standard operators convert between intish and doubleish types; ...
0
votes
2answers
47 views
Update User Agent in Firefox
I would like to change my User Agent while browsing and display the changes on a website.
I already got a website that prints the UserAgent, simply using JS document.writeln(navigator.userAgent).
...
0
votes
2answers
35 views
Unstyled text flashes before page fully loads in Firefox
I have a web page which loads inside of a JQuery UI Dialog. When the page loads in Firefox, the plain text appears for a second before all the css and javascript runs. Once everything loads, the text ...
0
votes
0answers
32 views
CSS3 animation and transition not smooth
I'm trying to develop a slideshow plugin for a project, but I'm running into issues with the CSS3 animations/transitions.
You can view it here:
http://jsfiddle.net/75Sjb/
What I'm trying to do
...
1
vote
0answers
35 views
Evil Firefox Error — “A parameter or an operation is not supported by the underlying object”
I'm trying to figure out what the hell is going on here. I've been at it for hours now and can't seem to get a grip on why this is happening.
I'm making a few ajax calls, and I keep getting this ...
1
vote
2answers
88 views
How to detect if pdf.js is *default* reader in firefox
Since Firefox 19, there is an internal default PDF reader "pdf.js". How can I detect whether this is the reader by default?
3
votes
2answers
40 views
CORS synchronous requests not working in firefox
The official documentation of jQuery ( async ajax section ) says that:
Cross-domain requests and dataType: "jsonp" requests do not support
synchronous operation.
However this works in all ...
0
votes
2answers
65 views
Css initial caps
I have a problem with initial caps(first letter big).
See here
.article {
text-align:justify;
text-wrap: unrestricted;
-moz-column-count:3; /* Firefox */
-webkit-column-count:3; /* ...
1
vote
2answers
359 views
Responsive Images won't Scale with Firefox as screen size is adjusted. Works in other Browsers
I'm new to responsive images but have figured out how to get my images to scale in Safari, Opera, and Chrome (don't know about IE) with the following CSS:
img {
max-width: 100%;
width: ...
0
votes
0answers
31 views
Worklight 5.0.6 dojo 'onclick' event not working in chrome
When trying our worklight application in both firefox and chrome we noticed that on chrome the onclick event on an item of our EdgeToEdgeStoreList does not work.
In Firefox the onclick event does ...
1
vote
2answers
53 views
Hide scroll bar, but still being able to scroll
I want to be able to scroll through the whole page, but without the scrollbar being showed.
In Google chrome it's
css:
::-webkit-scrollbar {
display: none;
}
But Mozilla firefox and Internet ...
0
votes
0answers
11 views
firefox doesn't display text value in form when selected=“selected”
Firefox doesn't show form correctly (Chrome and IE show same form without any problem).
In Firefox in first line in form text value doesn't appear.
In Firefox Firebug shows:
<td>
<select ...
0
votes
1answer
29 views
how to open pdf file in firefox browsers window
I want to open any pdf file links to new browser window. The following jquery code works fine except in firefox which opens file save dialog.
jQuery(function($) {
$('a[href$=".pdf"]').attr('target', ...
0
votes
1answer
35 views
watir-webdriver functions do not execute as a script but works on the interactive ruby shell
I am trying to write automated scripts for a web application using watir. There is a slider in the UI, which has a range from 1 to 11. It is a horizontal div. So, if you press the right arrow key, ...
0
votes
2answers
85 views
hyperlink in firefox to windows share
I am having trouble creating a hyperlink to a windows share, that works correctly in firefox and IE9.
The original line was this:
<a href="\\10.1.3.33\sharename\filename.txt" ...
0
votes
0answers
17 views
Read dom from Firefox Add-on on click
I build a small add-on for firefox and for this I need to get elements from the site's dom.
So I try:
var pMScript = "self.port.emit('data',[ document.getElementById('mainphoto').src, ...
0
votes
0answers
16 views
Firefox plug-in development
Iam trying to develop an extension for firefox using this guide http://blog.mozilla.org/addons/2009/01/28/how-to-develop-a-firefox-extension/. But i don't understand the part with the Pointing to an ...
2
votes
2answers
26 views
SVG Not Working in Firefox 18
It would be more accurate to say via firebug, i can see the values of the SVG elements changing - but nothing appears on the screen.
Here is the snippet i'm working with: ...
0
votes
2answers
45 views
css issue: circle appears in a different position in Firefox than in IE
I'll apologize in advance... i'm not a css expert. I'm having a problem where I'm drawing a circle beside a button. The circle appears correctly in IE, but in Firefox, its too high.
I have the ...
1
vote
2answers
187 views
Using OOP in firefox extension
I'm using classic OOP code from Mozilla
var myExtension = {
init: function() {
// The event can be DOMContentLoaded, pageshow, pagehide, <b ...
5
votes
4answers
10k views
“google is not defined” when using Google Maps V3 in Firefox remotely
Here's my conundrum:
I have a page that uses Google Maps V3 and jQuery. It all worked well locally in FF5, Chrome and Safari.
Once I uploaded to a web site, I get a "google is not defined" error on ...
1
vote
0answers
19 views
FB.Canvas.setAutoGrow horizontal inactive scrollbar in Firefox
I am having an issue with my FB Canvas iframe app.
What I use:
window.fbAsyncInit = function() {
FB.init({
// my app code code code
});
FB.Canvas.setAutoGrow(true);
}
+ set Fluid width ...
0
votes
1answer
30 views
Firefox ad-dons not working for F8 button
I have a Firefox ad-dons that activate by pressing F8.Now i want it trigger by when user focus to specific input box.other wise when input box get focused generate F8 key strocks.
...
1
vote
0answers
33 views
Styling :after pseudoelement in Firefox
I can't figue out a way to get rid of an :after alement on firefox. It does't show up in firebug at all, and it's messed up only in firefox. The probelm in question i a css arrow pointing downwards:
...
2
votes
1answer
2k views
Firefox error -NS_ERROR_XPC_NOT_ENOUGH_ARGS: Not enough arguments
HTML :
<div id="images" class="span9 grid-inputs">
<div class="row-fluid img_rw">
<div class="span12 clearfix">
...
0
votes
0answers
15 views
printing issues with firefox or GWT
I am working on some project based on Java and GWT.
Following is the description of one of my module.
I have GWT contentFrame (iFrame after browser render) and i have one print button to print the ...
0
votes
2answers
26 views
<select> drop arrow doesn't want to go out the container
I'm trying to find a workaround (without using JS) for the firefox bug which doesn't allow to style Firefox dropdown arrow in select elements. Some people say it could be done by putting a select ...
1
vote
1answer
210 views
How to embed Mozilla firefox 17 inside java swing application?
I am trying to run mozilla firefox within java desktop application.
I gone through Embed Firefox browser in Java Swing
this link but look like it will not work now as it requires MozillaInterfaces.jar ...



