// firefox user preferences

// enable <blink> tag
user_pref("browser.blink_allowed", true);

// Disable blinking images
user_pref("image.animation_mode", "none");

// Change default paper size from US-Letter to A4:
user_pref("print.postscript.paper_size", "A4");

// handle mailto: links
user_pref("network.protocol-handler.app.mailto", "/usr/local/bin/thunderbird");
user_pref("network.protocol-handler.external.mailto", "true");

// set memory cache size
user_pref("browser.cache.memory.capacity", 16384);

// time to wait before rendering starts in milliseconds (default is 250)
user_pref("nglayout.initialpaint.delay", 125);

// Enable pipelining:
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);

// disable confirmation when accessing sites with basic auth in url
user_pref("network.http.phishy-userpass-length", 64);

// disable annoying warnings of unresponsive scripts
user_pref("dom.max_script_run_time", 30);
