I have an old application that uses frames (not iframes) was was written back in the IE6 days so it runs in quirks mode.

Is it possible (Using IE 7 or 8) to have one frame still in quirks mode and another in standards mode or must the whole browser be in one mode or another?

I've been trying with no success.

I've seen this answer, that applies to iframes, but what about plain-old-frames?

link|improve this question

feedback

This question has an open bounty worth +50 reputation from Paperjam ending in 6 days.

Looking for an answer drawing from credible and/or official sources.

2 Answers

up vote 3 down vote accepted

I believe that you don't get the same option with frames as you do with an iframe. As the linked question's answer stated, the target in an iframe is not dependent upon the parent. In regular frames the pages all rely on the parent. I don't think you can separate the types out.

link|improve this answer
1  
I'm pretty sure you're wrong. – SLaks Feb 4 '11 at 19:57
5  
Thank you for the valuable comment. If I am wrong rather than such a useful comment, maybe an even more useful answer helping Diodeus? – Jeremy B. Feb 4 '11 at 20:08
1  
So far I've only managed to demonstrate that Jeremy is correct. If you're pretty sure please pony-up some facts. – Diodeus Feb 4 '11 at 20:13
I ended up having to load an Iframe in the frame. Now it works. Legacy apps, sigh. – Diodeus Feb 4 '11 at 21:43
feedback

I'm not sure if this helps, but according to the Mozilla Dev center Firefox makes it's quirksmode decisions based on doctype only.

https://developer.mozilla.org/en/Mozilla's_DOCTYPE_sniffing

You'll notice using the old frameset doctype triggers "almost standards" mode, which could show up as quirksmode.

link|improve this answer
Hmmm. I can tell from my layout that it's certainly quirks mode. – Diodeus Feb 4 '11 at 20:29
1  
I'm not sure what the rendering difference between "almost quirks" and "quirks" mode is (guessing probably closer to quirks since it's rendering like that for you), but it does pretty definitively say that you won't get fulls standards mode with a frameset doctype. – Graham Conzett Feb 4 '11 at 20:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.