Mozilla Firefox Browser | UA - User Agents

Standards Based Development

Firefox - Android Apps on Google Play Firefox Beta - Android Apps on Google Play Firefox Release Channels Firefox Rapid Release Timeline

Firefox Floating Scrollbars - http://dev.bowdenweb.com/css/css-scrollbars.html#scrollbars-firefox

General Panel

Firefox 15.0.1 General Panel

Options Window

Firefox 15.0.1 Options Panel Window - General Panel

Firefox Versions

Firefox

Firefox
Firefox Reviewers Guide

Firefox Reviewers Guide pdf

Firefox Version 1.0

Firefox Version 12

Firefox Version 12 Alternative Icon

Firefox Version 17

About Firefox Version 17.0 Download Mozilla Firefox Version 17.0b3 for Windows

Firefox Beta

Firefox Beta Firefox Beta Large

Firefox Aurora

Firefox Aurora
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 Aurora Setup Installation Screen

Firefox Floating Scrollbars

hack: floating scrollbars in Firefox

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