[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

abarth at webkit.org abarth at webkit.org
Wed Dec 22 11:21:13 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 091ae07801ac4e587ae83f4efe1e5c0c3f5a5dab
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jul 20 08:31:12 2010 +0000

    2010-07-20  Adam Barth  <abarth at 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:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63733 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 1d663b7..9b2e808 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,16 @@
+2010-07-20  Adam Barth  <abarth at 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:
+
 2010-07-20  Tony Chang  <tony at chromium.org>
 
         Reviewed by Dan Bernstein.
diff --git a/LayoutTests/fast/events/focusingUnloadedFrame.html b/LayoutTests/fast/events/focusingUnloadedFrame.html
index 4a6887c..43fcc87 100644
--- a/LayoutTests/fast/events/focusingUnloadedFrame.html
+++ b/LayoutTests/fast/events/focusingUnloadedFrame.html
@@ -20,15 +20,12 @@ function foo() {
     window.setTimeout('step2()', 100);
 }
 
-
+window.onload = foo;
 </script>
 
 </head>
-<body onload="foo()">
 <frameset>
     <frame src="resources/frontpage.html">  <!-- A page containing a link -->
-    <frame src="resources/notfound.html">	  <!-- A page that can't be found -->
+    <frame src="resources/notfound.html">   <!-- A page that can't be found -->
 </frameset>
-
-</body>
 </html>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list