vote up -4 vote down star

What will be the window title of the browser when the below code is inside one single HTML file?

<html>
<head><title>First document</title></head>
<body><h1>First document</h1></body>
</html>
<html>
<head><title>Second document</title></head>
<body><h1>Second document</h1></body>
</html>
  1. In IE – “First document”
  2. In FF – Second document”
  3. Both IE & FF - “Second document”
  4. Both IE & FF – “First document”
  5. Varies from browser to browser

I encounter this question in a quiz. 5th option prompt me to post here. My additional questions 6. Will ever this kind of situation possible in real life? 7. Will results vary within browser versions too?

flag

70% accept rate
2  
Why would you ever have two HTML documents in one HTML document is my question.... – Nick Bedford Sep 28 at 3:42
1  
yeah that question is not really something serious someone would please close it. – RageZ Sep 28 at 3:46
@Nick As mentioned in the question, I encountered this question in a quiz. That too in a world famous, big MNC having millions of hits. Since it is from them, I suspect, it may happen in real life situation too!! – rajakvk Sep 28 at 3:48
Why am I not able to vote this question for closing? – Robert Koritnik Sep 28 at 9:09
HTML5 defines it's the first title. – ms2ger Sep 28 at 17:44

closed as not a real question by meder, Mitch Wheat, alex, Pim Jager, SilentGhost Sep 28 at 14:57

4 Answers

vote up 2 vote down

Answer: 4 both IE and Firefox will show the "First" title - After just checking in Firefox and IE. (Chrome also for the record will show the First title.)

link|flag
vote up 1 vote down

This is not valid html. But browsers have a high tolerance for error so the second document is probably ignored. And all is left is a simple way to waste bandwidth.

link|flag
vote up 0 vote down

This is a trick question: it's not an HTML document.

link|flag
vote up 1 vote down

This is a really strange question to ask as it's in the realm of browser esoterica.

It does seem that browsers are consistent over this, and always display the first title. See the thread starting at http://lists.w3.org/Archives/Public/public-html/2007May/1066.html which deals with this and related issues.

Note however, that browsers are not consistent with what they do with the second title element. Some drop the element from the DOM altogether, while others move it into the head section where it would still be accessible via Javascript.

link|flag

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