[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:15:50 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e8a9477e37290a99657d04ac4f9162143cdfaee7
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 16 05:28:11 2010 +0000

    2010-07-15  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Darin Adler.
    
            fast/frames/contentWindow_Frame.html shouldn't depend on <body> before <frameset>
            https://bugs.webkit.org/show_bug.cgi?id=42349
    
            * fast/frames/contentWindow_Frame.html:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63519 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 30ffba1..1485fc0 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,14 @@
 2010-07-15  Adam Barth  <abarth at webkit.org>
 
+        Reviewed by Darin Adler.
+
+        fast/frames/contentWindow_Frame.html shouldn't depend on <body> before <frameset>
+        https://bugs.webkit.org/show_bug.cgi?id=42349
+
+        * fast/frames/contentWindow_Frame.html:
+
+2010-07-15  Adam Barth  <abarth at webkit.org>
+
         Reviewed by Eric Seidel.
 
         Update LegacyHTMLTreeBuilder to insert whitespace between </head> and <body>
diff --git a/LayoutTests/fast/frames/contentWindow_Frame.html b/LayoutTests/fast/frames/contentWindow_Frame.html
index 67bd65a..e563bf8 100644
--- a/LayoutTests/fast/frames/contentWindow_Frame.html
+++ b/LayoutTests/fast/frames/contentWindow_Frame.html
@@ -2,30 +2,28 @@
 
 <head>
 
-	<title>Testing contentWindow on Frames</title>
+  <title>Testing contentWindow on Frames</title>
 
-	<script>
-		function putText()
-		{
-			var t = document.getElementById("t_frame");
-			var b = document.getElementById("b_frame");
-	
-			var dv = t.contentDocument.getElementById("my_div");
-			
-			dv.innerText = b.contentWindow.location;
+  <script>
+    function putText()
+    {
+      var t = document.getElementById("t_frame");
+      var b = document.getElementById("b_frame");
+  
+      var dv = t.contentDocument.getElementById("my_div");
+      
+      dv.innerText = b.contentWindow.location;
 
-		}
-	</script>
+    }
 
-</head>
+    window.onload = putText;
+  </script>
 
-<body onload="putText()">
+</head>
 
   <FRAMESET rows="30%, 70%">
       <FRAME id="t_frame" name="top" src="resources/frame_top.html">
       <FRAME id="b_frame" name="bottom" src="about:blank">
  </FRAMESET>
 
-</body>
-
 </html>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list