Changeset 63733 in webkit


Ignore:
Timestamp:
Jul 20, 2010 1:31:12 AM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-07-20 Adam Barth <abarth@webkit.org>

Reviewed by Darin Adler.

fast/events/focusingUnloadedFrame.html shouldn't have <body> before <frameset>
https://bugs.webkit.org/show_bug.cgi?id=42348

This doesn't work in the HTML5 parser. We cover this behavior in
parsing tests. Sadly, the test still fails under the HTML5 parser, but
for a different reason.

  • fast/events/focusingUnloadedFrame.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r63731 r63733  
     12010-07-20  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-20  Tony Chang  <tony@chromium.org>
    215
  • trunk/LayoutTests/fast/events/focusingUnloadedFrame.html

    r13421 r63733  
    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>
Note: See TracChangeset for help on using the changeset viewer.