firefox3.6

Simulating the accelerometer event feature in Firefox 3.6?

I just downloaded Firefox 3.6 today and I noticed in the list of new features they have an Orientation API that can detect the direction that your laptop/computer is tilted. This is clearly a hardware feature of some sort; So if you don't have the hardware to do so is there any way of simulating it so that you can test it out on your pr...

HTML 5 File API

I hear that Firefox 3.6 adds support for the HTML local file API (Announcement here). Does this mean that I can access local files from javascript? Can anyone point me to examples for reading / writing local files? I would love to be able to read / write simple text files. Many thanks ...

Native Drag + Drop file upload in Firefox 3.6

I've recently been told by a colleague that Firefox 3.6 supports native drag and drop file uploads + image resizing from the operating system without any extensions or plugins required. Can anyone post a code snippet or provide a link which demonstrates this new functionality (as I couldn't find much on a Google search)? ...

Firefox 3.6 and CSS difference from previous versions of Firefox 3.5 and back?

So, in upgrading to Firefox 3.6, the CSS broke on input boxes. The padding has increased -- it might also be the font-size is somehow behaving different. Wondering if anyone else has seen this problem yet. Can't quite figure it out. HTML CODE: <form> <fieldset> <label for="inputField">Label</label> <input type="t...

Firefox 3.6 destroyed my page styling!

Don't really want to blame mozilla on this one, i'm sure it could be me doing something silly but the page at: www. neverMindFixed .com the presentation will work fine on other browsers, just not the latest firefox. anyone clued up on this? Thanks! Si ...

sIFR links lose focus in Firefox 3.6 after scrolling

I've noticed this issue in previous versions of Firefox whereby after scrolling sIFR links become inactive and need to be clicked in order to become links again. The fix for this was fairly straightforward and just required you to add 'fixFocus: true' in the sIFR config. Unfortunately when I upgraded to Firefox 3.6 this fix no longer wo...

Why is console.log statements not appearing in my FireBug console anymore?

I'm using FF 3.6 and FireBug 1.5.0 my console.log statements are no longer appearing in my firebug console. is anyone else experiencing this? is there a setting somewhere that got switched that I don't know about? ...

Firefox 3.6 not displaying content - xajax, jquery, css

Hi, I know this question may sound vague, but I have been debugging (PHP and js) our application for a day now and have not found any issues in the data generation. Our application uses xajax to generate lists based on data that we have in our DB. we have a list in particular that works on every other browser: IE 7&8, Firefox 3.0.13(Lin...

Components.interfaces.nsIProcess2 in Firefox 3.6 -- where did it go?

I am beta testing an application that includes a Firefox extension as one component. It was originally deployed when FF3.5.5 was the latest version, and survived 3.5.6 and 3.5.7. However on FF3.6 I'm getting the following in my error console: Warning: reference to undefined property Components.interfaces.nsIProcess2 Source file: chrome:...

Silverlight Issue with Firefox 3.6?

Recently I updated my firefox to 3.6 and the silver light app on my web app has weird behavior. No button click happens in the silverlight app, it just gives it the focus and if we 'TAB' around, we can get the click working. But this is not like the previous behavior in FF 3.5.7. Very inconvenient for the unsuspecting users. This woul...

Firefox Gecko SDK : NPP_GetValue not getting called

Hi, I have tried out the NPRuntime sample provided with the Gecko SDK 1.9.1 with the help of this link. It works perfectly fine with Firefox 3.6. Following the above steps I created a new scripting plugin (npmyplugin.dll). I am currently placing npmyplugin.dll in a folder other than Firefox/plugins. I am registering the associated mim...

Firefox selecting whole silverlight area causing browser scroll bars to become enabled

This only seems to be a problem now with firefox 3.6 When you click anywhere on the page which is one big embedded silverlight object the little broken outline appears, the same as when you say click on a link. This is causing the page to go one pixel over horizontally and vertically which is causing scroll bars to appear. Any idea? ...

What browsers currently support javascript's 'let' keyword?

I'm developing an app and don't have to ever worry about IE and was looking into some of the features present in A+ grade browsers that aren't in IE. One of these features I wanted to play around with is javascript's let keyword I can't seem to get any of their 'let' examples to work in Firefox 3.6 (UA string: Mozilla/5.0 (Windows; U; ...

firebug console error

Hello Stack Overflow, I try to learn to use Firebug (debug). I try to run "bennadel Firebug debug example" . URL SCRIPT http://www.bennadel.com/blog/1459-FireBug-s-Console-dir-vs-DOM-Tab.htm. With: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9.2) Gecko/20100115 Firefox/3.6 GTB6 (.NET CLR 3.5.30729). Firebug 1.5.2. I run " FireB...

embedded image data

I've noticed that in recent versions of Firefox, some images are displayed even when I disable images (e.g., Google News). Apparently this is due to images being embedded in the code using the "data:image" specification. Does anyone know of a way to disable these images from being displayed? The reason I'm posting this here rather than ...

document.getElementById() returns null when using mozrepl (but not in firebug)

I'm trying to use the mozrepl Firefox extension to give me a Javascript REPL from within emacs. I think I've got it set up correctly. I can interact with the REPL from emacs and can explore the document pretty much as described in the tutorial pages. The problem comes when I try to do something really simple, like get a context to a can...

Text Box size is different in IE 6 and FireFox 3.6

I am facing issues with text box size when veiwing in Fire Fox 3.6. < input class="dat" type="text" name="rejection_reason" size="51" maxlength="70" onchange="on_change();"> style is as: .dat { font-family : verdana,arial,helvetica; font-size : 8pt; font-weight : bold; text-align : left; vertical-align : middle; background-color :...

Firefox 3.6 - location.href not working in JSP

I have JSP page with method = POST and action='/mydir/mypage/nextpage' I have a button: <button title='Continue' onclick="this.form.perform.value='cancelButton'; javascript:doCloseWindow();">Continue</button> and JavaScript method like: function doCloseWindow(){ location.href = "https://abc.xyz.com/mydir/?param=123"; ...

accessing embedded object with jquery not working in firefox 3.6

Hi, this code in my plugin used to work just fine: jQuery('#embedded_obj', context).get(0).getVersion(); and the html... <object id="embedded_obj" type="application/x-versionchecker-1.0.0.1"></object> Basically trying to get the properties from an embedded object. But it looks like get(0) is returning an html object instead of th...

"not well-formed" warning when loading client-side JSON in Firefox via jQuery.ajax

I am using jQuery's ajax method to acquire a static JSON file. The data is loaded from the local file system, hence there is no server, so I can't change the mime type. This works fin in Safari, but Firefox (3.6.3) reports the file to be "not well-formed". I am aware of, and have reviewed, a similar post here on Stack Overflow: http:/...