firefox3.6

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

拜拜、爱过 提交于 2019-12-23 16:30:03
问题 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="text" id="inputField" /> </fieldset> </form> CSS CODE: form fieldset label { display:block; font-size:1.2em; font-weight:bold; padding:12px 9px; } #jumptoBox fieldset input {

Native Drag + Drop file upload in Firefox 3.6

◇◆丶佛笑我妖孽 提交于 2019-12-17 20:59:34
问题 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)? 回答1: http://hacks.mozilla.org/2009/12/file-drag-and-drop-in-firefox-3-6/ Edit: also https://developer.mozilla.org/en/CSS/-moz-background-size if that's the image resizing you

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

北战南征 提交于 2019-12-17 04:58:22
问题 I'm developing an app and don't have to ever worry about Internet Explorer and was looking into some of the features present in A+ grade browsers that aren't in Internet Explorer1. 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 (User-Agent string: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)). I get SyntaxError: missing ; before

Check Ctrl / Shift / Alt keys on 'click' event

…衆ロ難τιáo~ 提交于 2019-12-17 03:34:11
问题 How could I identify which Ctrl / Shift / Alt keys are pressed in the following code ? $("#my_id").click(function() { if (<left control key is pressed>) { alert("Left Ctrl"); } if (<right shift and left alt keys are pressed>) { alert("Right Shift + Left Alt"); } }); 回答1: Well you this wont work in all browsers just IE 8. Microsoft implemented the ability to determine which (right/left) key was pressed. Here is a link http://msdn.microsoft.com/en-us/library/ms534630(VS.85).aspx I also found

firefox: flash not loading if tab inactive/window minimized

喜你入骨 提交于 2019-12-13 00:36:59
问题 I have encountered a problem I believe to be related to what's stated in the topic. With selenium I'm currently automating tests for a website having flash elements for user inputs. While everything works fine when executing these tests on my computer locally, it fails to load the embeded flash if I start selenium on a remote Windows XP machine. However, the flash just loads fine if I start the tests while I'm logged in via remote desktop. This leads me to the assumption that whithout any

Can't change volume in HTML5 Audio tag in FireFox

时光毁灭记忆、已成空白 提交于 2019-12-12 21:51:34
问题 On this page http://www.metrovancouver.org/services/solidwaste/Holiday/Pages/Song.aspx I'm using a regular <audio> tag so users can listen to the song. I have a flash fallback on it too for users of IE. In Chrome it works OK. In FireFox 3.6.12, however, I cannot adjust the volume. If I put my mouse over the volume button, the volume slider appears, but as soon as I move my mouse to the slider to adjust, it disappears. I can mute the volume and unmute, but can't manually adjust the slider. Is

Why the vertical scroll bar moves automatically?

南笙酒味 提交于 2019-12-12 10:34:16
问题 I don't understand why the vertical scroll bar moves automatically to the most top position when "Line 9" clicked, for example. Further clicks does not move the scroll bar. Could anyone explain why, and how to fix this ? I work with Firefox 3.6.3. HTML: <html> <head> <link rel="stylesheet" href="test.css" type="text/css" /> <script src="http://code.jquery.com/jquery-latest.js"></script> <script language="JavaScript" src="test.js"></script> </head> <body> <div> <table> <tr row='0'><td class=

Why FIrefox doesn't recognize <section>?

落爺英雄遲暮 提交于 2019-12-11 23:39:10
问题 I would just like to confirm if Firefox can't interpret <section> tag? I created a website and tested it on Chrome and Safari. Everything was fine until I tested it on firefox and it was horrible. It took me almost 2 days just to figure out that Firefox cant handle <section> tag. I would just like to confirm because I am not sure about it. 回答1: Adding article { display: block; } to your style sheet. FF is probably treating it as an inline element because it's not fully supported. I've used

Firefox weird onblur behavior (3.6.12)

社会主义新天地 提交于 2019-12-11 18:23:11
问题 Check the test page here http://rickchristie.com/testfocus.html Correct me if I'm wrong: onfocus happens when the element gains focus. onblur happens when the element loses the focus. In Firefox 3.6.12 (tested on mac and windows), using onblur without onfocus works fine. However when an input element has both onfocus and onblur element, it gets weird: When you click at the input, onblur is fired instead of onfocus . Right after onblur , onfocus fires immediately. You can't type anything in

Gecko NSModule: ContractIDEntry “nsID const *”?

穿精又带淫゛_ 提交于 2019-12-11 14:54:00
问题 I created a FireFox addon a while a go, and noticed it stopped working on FireFox 3.6 Apparently, NSGetModule is being replaced with an NSModule structure, so I have to adapt. I'm coding my product with Delphi, so I have to port the new code to Object Pascal. If I look over this code: http://mxr.mozilla.org/mozilla-central/source/xpcom/components/Module.h I notice that the "cid" property of the ContractIDEntry struct, is defined as nsID const * Does this mean that there's a pointer to a nsID