This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit bd14194a011bdc60796135e583045fea5ba7eb6f
tree 978cf45382051436454133cd10968027a50a2d9a
parent 43637ab7afca0f7e43dd3818a084df5b1f2bbaf3
tree 978cf45382051436454133cd10968027a50a2d9a
parent 43637ab7afca0f7e43dd3818a084df5b1f2bbaf3
... |
... |
|
... |
... |
|
... |
... |
|
... |
... |
|





Comments
What exactly was wrong with FF3?
FF3 does not like stylesheet parsing
This line:
$A(stylesheet.rules || stylesheet.cssRules).each….
We should get rid of sniffing in favor of a feature test:
// FF3
var isCssRulesSameOriginPolicy = (function(){
var ss = $A(document.styleSheets);
try {
ss.each(function(s){ s.cssRules });
} catch(e) {
return true;
}
return false;
})();