Mozilla Firefox Browser | UA - User Agents
Standards Based Development
Firefox Floating Scrollbars - http://dev.bowdenweb.com/css/css-scrollbars.html#scrollbars-firefox
General Panel
Options Window
Firefox Versions
Firefox
Firefox Version 1.0
Firefox Version 12
Firefox Version 17
Download Mozilla Firefox Version 17.0b3 for Windows
Firefox Beta
Firefox Aurora


Firefox Aurora Setup Alert Screenshot in Windows 7. Note: the preselected input Make Aurora my default browser is a Black ux Design Pattern.
Firefox Floating Scrollbars
JavaScript isn't css, but I want to keep all this stuff together.
<script>
/**
* https://gist.github.com/4003205
* scratchpad.js
* How to have floating scrollbars in Firefox (Linux, Windows & Mac).
* Screenshot: http://i.imgur.com/bn44L.png
* You need Firefox > 18. Just run this code in a browser-scratchpad:
*
* Ping me on Twitter (@paulrouget) if you run into problems.
*
* 1. Go to about:config - Set devtools.chrome.enabled to true
* 2. Starts Scratchpad (Shift-F4)
* 3. In Scratchpad's menubar, check "Environment > Browser"
* 4. Past this whole code
* 5. In Scratchpad's menubar, click "Execute > Run"
*
* If you restart Firefox, you'll need to re-do these steps.
* You will find bugs.
* The scrollbars style is very basic (grey, doesn't fade out).
* For osx, we are working on an actual fix (see bug 636564).
*
* Someone should build an addon.
*
*/
let sss = Cc["@mozilla.org/content/style-sheet-service;1"].getService(Ci.nsIStyleSheetService);
let url = Services.io.newURI("chrome://browser/skin/devtools/floating-scrollbars.css", null, null);
sss.loadAndRegisterSheet(url, 0);
let root = document.documentElement;
let display = root.style.display;
root.style.display = "none";
window.getComputedStyle(root).display; // Flush
root.style.display = display; // Restore
</script>
Floating Scrollbars in Firefox (gist), hack: floating scrollbars in Firefox