LayoutTests/ChangeLog

 12010-07-19 Adam Barth <abarth@webkit.org>
 2
 3 Reviewed by Darin Adler.
 4
 5 fast/events/focusingUnloadedFrame.html shouldn't have <body> before <frameset>
 6 https://bugs.webkit.org/show_bug.cgi?id=42348
 7
 8 This doesn't work in the HTML5 parser. We cover this behavior in
 9 parsing tests. Sadly, the test still fails under the HTML5 parser, but
 10 for a different reason.
 11
 12 * fast/events/focusingUnloadedFrame.html:
 13
1142010-07-19 Eric Carlson <eric.carlson@apple.com>
215
316 Unreviewed, build fix.
63704

LayoutTests/fast/events/focusingUnloadedFrame.html

@@function foo() {
2020 window.setTimeout('step2()', 100);
2121}
2222
23 
 23window.onload = foo;
2424</script>
2525
2626</head>
27 <body onload="foo()">
2827<frameset>
2928 <frame src="resources/frontpage.html"> <!-- A page containing a link -->
30  <frame src="resources/notfound.html"> <!-- A page that can't be found -->
 29 <frame src="resources/notfound.html"> <!-- A page that can't be found -->
3130</frameset>
32 
33 </body>
3431</html>
63704