[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

bweinstein at apple.com bweinstein at apple.com
Thu Oct 29 20:49:47 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 4300f36e8e636da61bb2f9249fe2f434332ebee5
Author: bweinstein at apple.com <bweinstein at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 21 22:16:34 2009 +0000

    Roll out r49922 because it broke Tiger and SL in strange ways.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49924 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/fast/dom/dom-exception-description-expected.txt b/LayoutTests/fast/dom/dom-exception-description-expected.txt
deleted file mode 100644
index 7237acf..0000000
--- a/LayoutTests/fast/dom/dom-exception-description-expected.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-This test checks the names and descriptions of DOM exceptions matches what they should be.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS window.exception.name is "NOT_FOUND_ERR"
-An attempt was made to reference a Node in a context where it does not exist.
-PASS window.exception.name is "HIERARCHY_REQUEST_ERR"
-A Node was inserted somewhere it doesn't belong.
-PASS window.exception.name is "INDEX_SIZE_ERR"
-Index or size was negative, or greater than the allowed value.
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
diff --git a/LayoutTests/fast/dom/dom-exception-description.html b/LayoutTests/fast/dom/dom-exception-description.html
deleted file mode 100644
index 3f4d289..0000000
--- a/LayoutTests/fast/dom/dom-exception-description.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/dom-exception-description.js"></script>
-<script src="../js/resources/js-test-post.js"></script>
-</body>
-</html>
diff --git a/LayoutTests/fast/dom/script-tests/dom-exception-description.js b/LayoutTests/fast/dom/script-tests/dom-exception-description.js
deleted file mode 100755
index cc1b4ca..0000000
--- a/LayoutTests/fast/dom/script-tests/dom-exception-description.js
+++ /dev/null
@@ -1,30 +0,0 @@
-description("This test checks the names and descriptions of DOM exceptions matches what they should be.");
-
-try {
-    document.appendChild();
-} catch (e) {
-    // FIXME: Setting window.exception because shouldBe needs a global variable
-    window.exception = e;
-    shouldBeEqualToString("window.exception.name", "NOT_FOUND_ERR");
-    debug(e.description);
-}
-
-try {
-    document.appendChild(document.createElement());
-} catch (e) {
-    // FIXME: Setting window.exception because shouldBe needs a global variable
-    window.exception = e;
-    shouldBeEqualToString("window.exception.name", "HIERARCHY_REQUEST_ERR");
-    debug(e.description);
-}
-
-try {
-    document.createTextNode("foo").splitText(10000);
-} catch (e) {
-    // FIXME: Setting window.exception because shouldBe needs a global variable
-    window.exception = e;
-    shouldBeEqualToString("window.exception.name", "INDEX_SIZE_ERR");
-    debug(e.description);
-}
-
-var successfullyParsed = true;
diff --git a/WebCore/dom/DOMCoreException.idl b/WebCore/dom/DOMCoreException.idl
index abfb075..3001995 100644
--- a/WebCore/dom/DOMCoreException.idl
+++ b/WebCore/dom/DOMCoreException.idl
@@ -35,7 +35,6 @@ module core {
         readonly attribute unsigned short   code;
         readonly attribute DOMString        name;
         readonly attribute DOMString        message;
-        readonly attribute DOMString        description;
 
 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
         // Override in a Mozilla compatible format
diff --git a/WebCore/dom/EventException.idl b/WebCore/dom/EventException.idl
index c328dd8..3d82f85 100644
--- a/WebCore/dom/EventException.idl
+++ b/WebCore/dom/EventException.idl
@@ -37,7 +37,6 @@ module events {
         readonly attribute unsigned short   code;
         readonly attribute DOMString        name;
         readonly attribute DOMString        message;
-        readonly attribute DOMString        description;
 
 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
         // Override in a Mozilla compatible format
diff --git a/WebCore/dom/RangeException.idl b/WebCore/dom/RangeException.idl
index b884b8c..d2cf385 100644
--- a/WebCore/dom/RangeException.idl
+++ b/WebCore/dom/RangeException.idl
@@ -26,7 +26,6 @@ module ranges {
         readonly attribute unsigned short   code;
         readonly attribute DOMString        name;
         readonly attribute DOMString        message;
-        readonly attribute DOMString        description;
 
 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
         [DontEnum] DOMString toString();
diff --git a/WebCore/svg/SVGException.idl b/WebCore/svg/SVGException.idl
index aaf4a69..233f653 100644
--- a/WebCore/svg/SVGException.idl
+++ b/WebCore/svg/SVGException.idl
@@ -28,7 +28,6 @@ module svg {
         readonly attribute unsigned short   code;
         readonly attribute DOMString        name;
         readonly attribute DOMString        message;
-        readonly attribute DOMString        description;
 
 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
         // Override in a Mozilla compatible format
diff --git a/WebCore/xml/XMLHttpRequestException.idl b/WebCore/xml/XMLHttpRequestException.idl
index 66d5ec1..380e426 100644
--- a/WebCore/xml/XMLHttpRequestException.idl
+++ b/WebCore/xml/XMLHttpRequestException.idl
@@ -36,7 +36,6 @@ module xml {
         readonly attribute unsigned short   code;
         readonly attribute DOMString        name;
         readonly attribute DOMString        message;
-        readonly attribute DOMString        description;
 
 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
         // Override in a Mozilla compatible format
diff --git a/WebCore/xml/XPathException.idl b/WebCore/xml/XPathException.idl
index 560f7cd..c3c95e3 100644
--- a/WebCore/xml/XPathException.idl
+++ b/WebCore/xml/XPathException.idl
@@ -36,7 +36,6 @@ module xpath {
         readonly attribute unsigned short   code;
         readonly attribute DOMString        name;
         readonly attribute DOMString        message;
-        readonly attribute DOMString        description;
 
 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
         // Override in a Mozilla compatible format

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list