firefox4

Strange behaviour of Firefox 4.01 with x/html and javascript

自作多情 提交于 2019-12-11 17:09:29
问题 I work on web accessibility for blind people interacting with a screen reader Jaws and a vocal synthesizer. I am using x/html with wai-aria and JavaScript to design accessible web pages of a questionnaire user test. In this kind of application, main difficulty is to face with different behaviors on different browsers and also versions of Jaws screen reader generate different behaviors. However, problems started after the release of Firefox 4 (and next 4.01). The same code of a web

hover on div does work in Firefox

ε祈祈猫儿з 提交于 2019-12-11 09:05:35
问题 I have this code: <div title="" class="icePnlGrp graButtonActionDiv graButtonBackgroundOn"> <label id="j_id89:j_id99" class="iceOutLbl graButtonActionLabel">Select</label> </div> With css: .graButtonBackgroundOn { line-height: 45px; background: url('/resources/images/external/button_generic_on_txmart.png'); } and .graButtonBackgroundOn:hover{ background: url('/resources/images/external/button_generic_on_txmart-hover.png'); } I cannot figure out why on Firefox and IE, hovering on that div does

Open a URL in Firefox via PowerShell?

爱⌒轻易说出口 提交于 2019-12-10 14:55:46
问题 I want the url to be opened in Firefox by Powershell script To make things a bit difficult, Firefox is not the default browser and it is a portable Firefox version. Edit: There seems to be some problem with my portable firefox installation. Even when making it the default browser, it doesn't work properly when invoked by start url. I rechecked it with a fresh install of portable Firefox 4.0 from here and ittlefoot's solution works fine. 回答1: Using the website as the first argument should work

Why does Firefox 4 absolutely position fieldset legends differently than other browsers?

好久不见. 提交于 2019-12-05 23:34:14
Why does Firefox 4 absolutely position fieldset legends differently than other browsers? Test page: <!DOCTYPE html> <html dir="ltr" lang="en"> <head> <meta charset="utf-8"/> <title>Test</title> <style type="text/css"> * { margin: 0; padding: 0; } body { font-family: Tahoma, Arial, sans-serif; font-size: 62.5%; } #wrapper { margin: auto; padding: 1em; width: 720px; } form { width: 670px; padding: 25px; background-color: #ffffff; /* White */ color: #000000; /* Black */ border: 1px solid #cccccc; /* Gray */ font-size: 12px; } fieldset { position: relative; border: 1px solid #cccccc; /* Gray */

How do I get watir-webdriver to start Firefox 4 with Firebug?

。_饼干妹妹 提交于 2019-12-04 20:53:33
问题 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. http://code.google.com/p/selenium/wiki/FirefoxDriver 回答1: you have to create a specific profile where Firebug is always enabled, then launch firefox with this profile in your configuration 回答2: The quick answer is: browser = Watir::Browser.new(:firefox, :profile => "default") But if you are running tests you probably shouldn

How do I get watir-webdriver to start Firefox 4 with Firebug?

本小妞迷上赌 提交于 2019-12-03 15:18:16
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. http://code.google.com/p/selenium/wiki/FirefoxDriver you have to create a specific profile where Firebug is always enabled, then launch firefox with this profile in your configuration The quick answer is: browser = Watir::Browser.new(:firefox, :profile => "default") But if you are running tests you probably shouldn't use the default profile. profile = Selenium::WebDriver::Firefox::Profile.new profile.add_extension "/path/to

How to add a notification on the app tab of the Firefox?

南笙酒味 提交于 2019-12-03 12:14:10
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 to operate the app tab with the notification? I can see the code of a pinned application of IE9 with similar function. But I could not run into any document of FF. Do you mean that you're building a website and you want to let Firefox notify the user on an event when the tab is pinned? I'm fairly certain Firefox does it when the website's <title> is changed. For instance on Twitter, when there's a

Where are Firefox IndexedDB files stored?

霸气de小男生 提交于 2019-12-03 08:34:44
If I create an IndexedDB in Firefox 4, where are the files stored on my hard drive? Preferably for Win7, but the path is probably similar across OSes. This post suggests the following location: C:\Documents and Settings\<username>\Application Data\Mozilla\Firefox\Profiles\<xxxx>.default\indexedDB\<databaseid> The <xxxx>.default folder is your profile directory, which is where Firefox keeps basically everything. 来源: https://stackoverflow.com/questions/5358704/where-are-firefox-indexeddb-files-stored

Firefox 4 Issue with jQuery UI Sortable

扶醉桌前 提交于 2019-12-02 11:51:44
After upgrading from Firefox 3.6 to FF4 i was surprised to see that jQuery UI Sortable has stopped working (I am using jQuery (1.4.2) with jQuery UI (1.8.5)) and i get this error (from firebug) this.helper is null dev/js/jquery-ui-1.8.5.custom.min.js Line 264 I've had a look around but not found any reason for this error. I even upgraded jQuery UI to the latest version (1.8.11) but that did not help. If anyone has any insight why this is happening (or a fix) i would greatly appreciate your input! Thanks. Hello mtlgray: I've just tested jQueryUI Sortable demo with my Firefox 4.0 and it works OK

Firefox 4 confirmation dialog in selenium 2.0b3

為{幸葍}努か 提交于 2019-12-02 10:54:34
问题 I have worked with selenium for like 3 months. My tests worked fine in Firefox 3.6. However, when I update to Firefox 4 and selenium-server 2.0b3, there is a problem with the confirmation dialog. Here is the code (very simple): choose_ok_on_next_confirmation click("delete_button") get_confirmation wait_for_page_to_load I have searched a lot and tried many other things like assert_confirmation or store_confirmation. Even is_confirmation_present didn't work. They can't detect the dialog I think