Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What exactly is "IE5 quirks" in IE 10 Developer Tools? [duplicate]

Possible Duplicate:
Does the windows 8 internet explorer 10 still have quirksmode?

I'm working on a website which we're trying to get to work in IE10. In this site we have an iframe which is breaking when we're using IE5 quirksmode which we really need for the main site to work, for some reason we can't just use the Quirks document mode in IE10, because then the main site wont work.

So what the heck is IE5 quirks and is it the same as quirks in IE9|8?

inb4 OP is non-standars compliant: this is a legacy product and we're working hard on a new edition of it.

like image 973
Daniel Figueroa Avatar asked Jan 16 '13 09:01

Daniel Figueroa


1 Answers

The answer can be found here: Does the windows 8 internet explorer 10 still have quirksmode?

IE10 has two quirk modes. The new one is called "Quirks mode" and behaves exactly the same as quirks mode in Firefox and Webkit - you can turn it on by removing <!doctype>. All HTML5 and other new features work in this mode. Only some minor spec violations are present (not requiring units in CSS dimensions and so on).

The legacy quirks mode is called "IE5 Quirks mode" and behaves as quirks mode in IE9. You can turn it on with X-UA-Compatible: IE=5 HTTP header or tag. In this mode, IE renders the page as old IE5.

If this helped you go and update duri's answer and not this one!

like image 141
Daniel Figueroa Avatar answered Oct 11 '22 17:10

Daniel Figueroa