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

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 12:56:27 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 43f94420f4a8bcd48ec24222a26f39598c0166a4
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 2 11:46:57 2010 +0000

    2010-09-02  Sheriff Bot  <webkit.review.bot at gmail.com>
    
            Unreviewed, rolling out r66656.
            http://trac.webkit.org/changeset/66656
            https://bugs.webkit.org/show_bug.cgi?id=45105
    
            won't pass after 66655 rollout (Requested by kling on
            #webkit).
    
            * fast/dom/Selection/script-tests/wrong-document-err.js: Removed.
            * fast/dom/Selection/wrong-document-err-expected.txt: Removed.
            * fast/dom/Selection/wrong-document-err.html: Removed.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66662 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 6320950..c9b4c65 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,18 @@
 2010-09-02  Sheriff Bot  <webkit.review.bot at gmail.com>
 
+        Unreviewed, rolling out r66656.
+        http://trac.webkit.org/changeset/66656
+        https://bugs.webkit.org/show_bug.cgi?id=45105
+
+        won't pass after 66655 rollout (Requested by kling on
+        #webkit).
+
+        * fast/dom/Selection/script-tests/wrong-document-err.js: Removed.
+        * fast/dom/Selection/wrong-document-err-expected.txt: Removed.
+        * fast/dom/Selection/wrong-document-err.html: Removed.
+
+2010-09-02  Sheriff Bot  <webkit.review.bot at gmail.com>
+
         Unreviewed, rolling out r66649.
         http://trac.webkit.org/changeset/66649
         https://bugs.webkit.org/show_bug.cgi?id=45103
diff --git a/LayoutTests/fast/dom/Selection/script-tests/wrong-document-err.js b/LayoutTests/fast/dom/Selection/script-tests/wrong-document-err.js
deleted file mode 100644
index 42a0905..0000000
--- a/LayoutTests/fast/dom/Selection/script-tests/wrong-document-err.js
+++ /dev/null
@@ -1,23 +0,0 @@
-description("Test that collapse() and selectAllChildren() throw WRONG_DOCUMENT_ERR if the node is in another document.");
-
-var sel = window.getSelection();
-var iframe = document.createElement("iframe");
-document.body.appendChild(iframe);
-var iframe_doc = iframe.contentDocument;
-var div = iframe_doc.createElement('div');
-iframe_doc.body.appendChild(div);
-var externalTextNode = iframe_doc.createTextNode("abcdef");
-div.appendChild(externalTextNode);
-
-var internalTextNode = iframe_doc.createTextNode("abcdef");
-document.body.appendChild(internalTextNode);
-
-shouldThrow("sel.collapse(externalTextNode, 0)", "'Error: WRONG_DOCUMENT_ERR: DOM Exception 4'");
-shouldThrow("sel.selectAllChildren(externalTextNode)", "'Error: WRONG_DOCUMENT_ERR: DOM Exception 4'");
-shouldBe("sel.collapse(internalTextNode, 0)", "undefined");
-shouldBe("sel.selectAllChildren(internalTextNode)", "undefined");
-
-document.body.removeChild(iframe);
-document.body.removeChild(internalTextNode);
-
-var successfullyParsed = true;
diff --git a/LayoutTests/fast/dom/Selection/wrong-document-err-expected.txt b/LayoutTests/fast/dom/Selection/wrong-document-err-expected.txt
deleted file mode 100644
index 77850d8..0000000
--- a/LayoutTests/fast/dom/Selection/wrong-document-err-expected.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Test that collapse() and selectAllChildren() throw WRONG_DOCUMENT_ERR if the node is in another document.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS sel.collapse(externalTextNode, 0) threw exception Error: WRONG_DOCUMENT_ERR: DOM Exception 4.
-PASS sel.selectAllChildren(externalTextNode) threw exception Error: WRONG_DOCUMENT_ERR: DOM Exception 4.
-PASS sel.collapse(internalTextNode, 0) is undefined
-PASS sel.selectAllChildren(internalTextNode) is undefined
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
diff --git a/LayoutTests/fast/dom/Selection/wrong-document-err.html b/LayoutTests/fast/dom/Selection/wrong-document-err.html
deleted file mode 100644
index bbd6d4d..0000000
--- a/LayoutTests/fast/dom/Selection/wrong-document-err.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<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 src="script-tests/wrong-document-err.js"></script>
-<script src="../../js/resources/js-test-post.js"></script>
-</body>
-</html>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list