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


The following commit has been merged in the debian/experimental branch:
commit eea4859a984066cd499f8d28459f14e8b7a69769
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 27 21:57:24 2010 +0000

    2010-10-27  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Ojan Vafai.
    
            REGRESSION(66511): CORDYS Process Factory doesn't work
            https://bugs.webkit.org/show_bug.cgi?id=48453
    
            Test some appendChild cases that didn't have coverage before.
    
            * fast/dom/allowed-children-expected.txt: Added.
            * fast/dom/allowed-children.html: Added.
    2010-10-27  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Ojan Vafai.
    
            REGRESSION(66511): CORDYS Process Factory doesn't work
            https://bugs.webkit.org/show_bug.cgi?id=48453
    
            When Ojan refactored this function in 66511, he missed an "else",
            which causes us to generated HIERARCHY_REQUEST_ERR in some cases where
            we're not supposed to.  This patch restores the "else" behavior (using
            an early return) and adds a test for the cases that caused problems in
            the field.
    
            Test: fast/dom/allowed-children.html
    
            * dom/Node.cpp:
            (WebCore::isChildTypeAllowed):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70718 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 8366f8b..08d432e 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-27  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Ojan Vafai.
+
+        REGRESSION(66511): CORDYS Process Factory doesn't work
+        https://bugs.webkit.org/show_bug.cgi?id=48453
+
+        Test some appendChild cases that didn't have coverage before.
+
+        * fast/dom/allowed-children-expected.txt: Added.
+        * fast/dom/allowed-children.html: Added.
+
 2010-10-27  Adam Roben  <aroben at apple.com>
 
         Add Windows-specific results for test added in r70692
diff --git a/LayoutTests/fast/dom/allowed-children-expected.txt b/LayoutTests/fast/dom/allowed-children-expected.txt
new file mode 100644
index 0000000..385ef53
--- /dev/null
+++ b/LayoutTests/fast/dom/allowed-children-expected.txt
@@ -0,0 +1,17 @@
+This test ensures that objects RGBColor objects return the correct values.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS u.tagName is 'Long'
+PASS (new XMLSerializer()).serializeToString(doc) is '<Long/>'
+PASS u.tagName is 'Long'
+PASS (new XMLSerializer()).serializeToString(doc) is '<Long><b>15</b></Long>'
+PASS u.tagName is 'Long'
+PASS (new XMLSerializer()).serializeToString(doc) is '<Long id="1">1</Long>'
+PASS u.tagName is 'Long'
+PASS (new XMLSerializer()).serializeToString(doc) is '<Long id="1">15<b>1</b>16</Long>'
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
diff --git a/LayoutTests/fast/dom/allowed-children.html b/LayoutTests/fast/dom/allowed-children.html
new file mode 100644
index 0000000..cb4d166
--- /dev/null
+++ b/LayoutTests/fast/dom/allowed-children.html
@@ -0,0 +1,45 @@
+<html>
+<head>
+<link rel="stylesheet" href="../js/resources/js-test-style.css">
+<script src="../js/resources/js-test-pre.js"></script>
+</head>
+<body>
+<p id="description"></p>
+<div id="console"></div>
+<script>
+description("This test ensures that objects RGBColor objects return the correct values.");
+
+var cases = [
+  {
+    "markup": "<Long />",
+    "tagName": "'Long'",
+    "serialization": "'<Long/>'"
+  }, {
+    "markup": "<Long><b>15</b></Long>",
+    "tagName": "'Long'",
+    "serialization": "'<Long><b>15</b></Long>'"
+  }, {
+    "markup": "<Long id='1'>1</Long>",
+    "tagName": "'Long'",
+    "serialization": "'<Long id=\"1\">1</Long>'"
+  }, {
+    "markup": "<Long id='1'>15<b>1</b>16</Long>",
+    "tagName": "'Long'",
+    "serialization": "'<Long id=\"1\">15<b>1</b>16</Long>'"
+  }
+];
+
+for (var i = 0; i < cases.length; ++i) {
+    var doc = document.implementation.createDocument("", "", null);
+    var doc2 = (new DOMParser()).parseFromString(cases[i].markup, "text/xml");
+    var u = doc.importNode(doc2.childNodes[0], true);
+    shouldBe("u.tagName", cases[i].tagName);
+    doc.appendChild(u);
+    shouldBe("(new XMLSerializer()).serializeToString(doc)", cases[i].serialization);
+}
+
+successfullyParsed = true;
+</script>
+<script src="../js/resources/js-test-post.js"></script>
+</body>
+</html>
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 40fee0b..a2039a2 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,21 @@
+2010-10-27  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Ojan Vafai.
+
+        REGRESSION(66511): CORDYS Process Factory doesn't work
+        https://bugs.webkit.org/show_bug.cgi?id=48453
+
+        When Ojan refactored this function in 66511, he missed an "else",
+        which causes us to generated HIERARCHY_REQUEST_ERR in some cases where
+        we're not supposed to.  This patch restores the "else" behavior (using
+        an early return) and adds a test for the cases that caused problems in
+        the field.
+
+        Test: fast/dom/allowed-children.html
+
+        * dom/Node.cpp:
+        (WebCore::isChildTypeAllowed):
+
 2010-10-27  Beth Dakin  <bdakin at apple.com>
 
         Reviewed by Darin Adler.
diff --git a/WebCore/dom/Node.cpp b/WebCore/dom/Node.cpp
index 251cb0f..e45baa4 100644
--- a/WebCore/dom/Node.cpp
+++ b/WebCore/dom/Node.cpp
@@ -1080,13 +1080,13 @@ static bool isChildTypeAllowed(Node* newParent, Node* child)
     if (child->nodeType() != Node::DOCUMENT_FRAGMENT_NODE) {
         if (!newParent->childTypeAllowed(child->nodeType()))
             return false;
+        return true;
     }
     
     for (Node *n = child->firstChild(); n; n = n->nextSibling()) {
         if (!newParent->childTypeAllowed(n->nodeType()))
             return false;
     }
-
     return true;
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list