Opened 11 years ago
Last modified 11 years ago
#11479 review Task
env.ieQuirks — at Initial Version
Reported by: | Piotr Jasiun | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
The problem with quirks appeared after removing IE 6 & IE 7 support (#11422), because most of hacks now apply only to QM (instead of IE 7, IE 6 and IE QM). Even worse it is implemented in multipile ways (unsing "env.ie && env.quirks
", "env.ie6Compat
" or "document.documentMode
").
I think that it would be misleading if we keep if ( env.ie6Compat )
in our code only because of QM (env.ie6Compat
is true in QM) and it is better to replace it with if ( env.ieQuirks
).
Also after clean up we can save some bites (compressed ckeditor is 322 byts smaller with env.ieQuirks).