[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 13:37:19 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 5796922a4d4e6a1da87086de6a05151828c7684a
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 21 19:47:31 2010 +0000

    2010-09-21  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Alexey Proskuryakov.
    
            stray param elements are dropped during parsing
            https://bugs.webkit.org/show_bug.cgi?id=14551
    
            This bug was fixed by the HTML5 parser.  Add tests from bug.
    
            * fast/parser/stray-param-expected.txt: Added.
            * fast/parser/stray-param.html: Added.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67976 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 7356d97..479a4e7 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -2,6 +2,18 @@
 
         Reviewed by Alexey Proskuryakov.
 
+        stray param elements are dropped during parsing
+        https://bugs.webkit.org/show_bug.cgi?id=14551
+
+        This bug was fixed by the HTML5 parser.  Add tests from bug.
+
+        * fast/parser/stray-param-expected.txt: Added.
+        * fast/parser/stray-param.html: Added.
+
+2010-09-21  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Alexey Proskuryakov.
+
         [html-parsing] make entity handling match IE7 / HTML5
         https://bugs.webkit.org/show_bug.cgi?id=14391
 
diff --git a/LayoutTests/editing/selection/5136696-expected.txt b/LayoutTests/fast/parser/stray-param-expected.txt
similarity index 100%
copy from LayoutTests/editing/selection/5136696-expected.txt
copy to LayoutTests/fast/parser/stray-param-expected.txt
diff --git a/LayoutTests/fast/parser/stray-param.html b/LayoutTests/fast/parser/stray-param.html
new file mode 100644
index 0000000..d1d0d0c
--- /dev/null
+++ b/LayoutTests/fast/parser/stray-param.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Stray param elements are not dropped when parsing</title>
+        <script>
+            if (window.layoutTestController)
+                layoutTestController.dumpAsText();
+
+            window.onload = function() {
+                var len = document.getElementsByTagName("param").length;
+                document.getElementsByTagName("p")[0].innerHTML = (len == 1) ? "PASS" : "FAIL";
+            };
+        </script>
+    </head>
+    <body>
+        <p>This test requires Javascript.</p>
+        <param>
+    </body>
+</html>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list