[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

ager at chromium.org ager at chromium.org
Mon Feb 21 00:26:41 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 0bc82862f0806651abc305089ee3cfb01825913e
Author: ager at chromium.org <ager at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 31 17:18:21 2011 +0000

    2011-01-31  Mads Ager  <ager at chromium.org>
    
            Reviewed by Pavel Feldman.
    
            [V8] Update V8 specific layout test expectations
            https://bugs.webkit.org/show_bug.cgi?id=53423
    
            Error formatting has changed in V8. Updating chromium specific
            layout test expectations accordingly.
    
            * platform/chromium-mac/fast/js/array-every-expected.txt:
            * platform/chromium-mac/fast/js/instance-of-immediates-expected.txt:
            * platform/chromium-mac/fast/js/property-getters-and-setters-expected.txt:
            * platform/chromium-mac/storage/transaction-error-callback-expected.txt:
            * platform/chromium-mac/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt:
            * platform/chromium-win/fast/js/array-every-expected.txt:
            * platform/chromium-win/fast/js/instance-of-immediates-expected.txt:
            * platform/chromium-win/fast/js/property-getters-and-setters-expected.txt:
            * platform/chromium-win/storage/transaction-error-callback-expected.txt:
            * platform/chromium-win/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@77135 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index ee61a3c..43eb657 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,24 @@
+2011-01-31  Mads Ager  <ager at chromium.org>
+
+        Reviewed by Pavel Feldman.
+
+        [V8] Update V8 specific layout test expectations
+        https://bugs.webkit.org/show_bug.cgi?id=53423
+
+        Error formatting has changed in V8. Updating chromium specific
+        layout test expectations accordingly.
+
+        * platform/chromium-mac/fast/js/array-every-expected.txt:
+        * platform/chromium-mac/fast/js/instance-of-immediates-expected.txt:
+        * platform/chromium-mac/fast/js/property-getters-and-setters-expected.txt:
+        * platform/chromium-mac/storage/transaction-error-callback-expected.txt:
+        * platform/chromium-mac/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt:
+        * platform/chromium-win/fast/js/array-every-expected.txt:
+        * platform/chromium-win/fast/js/instance-of-immediates-expected.txt:
+        * platform/chromium-win/fast/js/property-getters-and-setters-expected.txt:
+        * platform/chromium-win/storage/transaction-error-callback-expected.txt:
+        * platform/chromium-win/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt:
+
 2011-01-31  Alejandro G. Castro  <alex at igalia.com>
 
         Unreviewed skipped favicon-as-image.html test, it is flaky and it
diff --git a/LayoutTests/platform/chromium-mac/fast/js/array-every-expected.txt b/LayoutTests/platform/chromium-mac/fast/js/array-every-expected.txt
index 9768dd1..81bcb40 100644
--- a/LayoutTests/platform/chromium-mac/fast/js/array-every-expected.txt
+++ b/LayoutTests/platform/chromium-mac/fast/js/array-every-expected.txt
@@ -32,7 +32,7 @@ PASS [12, 54, 18, 130, 44].every(isBigEnoughAndException) threw exception except
 5.0 Wrong Type for Callback Test
 PASS [12, 5, 8, 130, 44].every(5) threw exception TypeError: 5 is not a function.
 PASS [12, 5, 8, 130, 44].every('wrong') threw exception TypeError: wrong is not a function.
-PASS [12, 5, 8, 130, 44].every(new Object()) threw exception TypeError: #<an Object> is not a function.
+PASS [12, 5, 8, 130, 44].every(new Object()) threw exception TypeError: #<Object> is not a function.
 PASS [12, 5, 8, 130, 44].every(null) threw exception TypeError: null is not a function.
 PASS [12, 5, 8, 130, 44].every(undefined) threw exception TypeError: undefined is not a function.
 PASS [12, 5, 8, 130, 44].every() threw exception TypeError: undefined is not a function.
diff --git a/LayoutTests/platform/chromium-mac/fast/js/instance-of-immediates-expected.txt b/LayoutTests/platform/chromium-mac/fast/js/instance-of-immediates-expected.txt
index 7893926..413a4fc 100644
--- a/LayoutTests/platform/chromium-mac/fast/js/instance-of-immediates-expected.txt
+++ b/LayoutTests/platform/chromium-mac/fast/js/instance-of-immediates-expected.txt
@@ -4,11 +4,11 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
 
 
 PASS (1 instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got 1.
-PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
-PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
+PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>.
+PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<Constructor>.
 PASS (1 instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got 1.
-PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
-PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
+PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>.
+PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Constructor>.
 PASS (1 instanceof Constructor) is false
 PASS ({} instanceof Constructor) is false
 PASS (obj instanceof Constructor) is true
diff --git a/LayoutTests/platform/chromium-mac/fast/js/property-getters-and-setters-expected.txt b/LayoutTests/platform/chromium-mac/fast/js/property-getters-and-setters-expected.txt
index fe82413..78f9573 100644
--- a/LayoutTests/platform/chromium-mac/fast/js/property-getters-and-setters-expected.txt
+++ b/LayoutTests/platform/chromium-mac/fast/js/property-getters-and-setters-expected.txt
@@ -10,7 +10,7 @@ __defineGetter__ and __defineSetter__
 PASS o2.b is 8
 PASS o2.b is 11
 Setting a value without having a setter
-PASS o3.x = 10; threw exception TypeError: Cannot set property x of #<an Object> which has only a getter.
+PASS o3.x = 10; threw exception TypeError: Cannot set property x of #<Object> which has only a getter.
 Getting a value without having a getter
 PASS o4.x is undefined.
 __lookupGetter__ and __lookupSetter__
diff --git a/LayoutTests/platform/chromium-mac/storage/transaction-error-callback-expected.txt b/LayoutTests/platform/chromium-mac/storage/transaction-error-callback-expected.txt
index cbebda9..3cd9dcf 100644
--- a/LayoutTests/platform/chromium-mac/storage/transaction-error-callback-expected.txt
+++ b/LayoutTests/platform/chromium-mac/storage/transaction-error-callback-expected.txt
@@ -1,5 +1,5 @@
-CONSOLE MESSAGE: line 63: Uncaught #<an Object>
-CONSOLE MESSAGE: line 63: Uncaught #<an Object>
+CONSOLE MESSAGE: line 63: Uncaught #<Object>
+CONSOLE MESSAGE: line 63: Uncaught #<Object>
 This test confirms that SQLTransactionErrorCallback is invoked correctly and regardless of its output, the transaction is always rolled back on failure.
 Testing transaction failing mid-way and error callback returning true : SUCCESS
 Testing transaction failing mid-way and error callback return false : SUCCESS
diff --git a/LayoutTests/platform/chromium-mac/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt b/LayoutTests/platform/chromium-mac/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt
index 92da7f3..bab98e9 100644
--- a/LayoutTests/platform/chromium-mac/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt
+++ b/LayoutTests/platform/chromium-mac/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt
@@ -5,14 +5,14 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
 
 PASS path.pathSegList.initialize(); threw exception SyntaxError: Not enough arguments.
 PASS path.getPathSegAtLength(0) is 0
-PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'insertItemBefore'.
-PASS path.replaceItem(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'replaceItem'.
-PASS path.appendItem(null) threw exception TypeError: Object #<an SVGPathElement> has no method 'appendItem'.
+PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'insertItemBefore'.
+PASS path.replaceItem(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'replaceItem'.
+PASS path.appendItem(null) threw exception TypeError: Object #<SVGPathElement> has no method 'appendItem'.
 List correctly initialised.
 PASS path.getPathSegAtLength(0) is 0
-PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'insertItemBefore'.
-PASS path.replaceItem(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'replaceItem'.
-PASS path.appendItem(null) threw exception TypeError: Object #<an SVGPathElement> has no method 'appendItem'.
+PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'insertItemBefore'.
+PASS path.replaceItem(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'replaceItem'.
+PASS path.appendItem(null) threw exception TypeError: Object #<SVGPathElement> has no method 'appendItem'.
 PASS successfullyParsed is true
 
 TEST COMPLETE
diff --git a/LayoutTests/platform/chromium-win/fast/js/array-every-expected.txt b/LayoutTests/platform/chromium-win/fast/js/array-every-expected.txt
index 9768dd1..81bcb40 100644
--- a/LayoutTests/platform/chromium-win/fast/js/array-every-expected.txt
+++ b/LayoutTests/platform/chromium-win/fast/js/array-every-expected.txt
@@ -32,7 +32,7 @@ PASS [12, 54, 18, 130, 44].every(isBigEnoughAndException) threw exception except
 5.0 Wrong Type for Callback Test
 PASS [12, 5, 8, 130, 44].every(5) threw exception TypeError: 5 is not a function.
 PASS [12, 5, 8, 130, 44].every('wrong') threw exception TypeError: wrong is not a function.
-PASS [12, 5, 8, 130, 44].every(new Object()) threw exception TypeError: #<an Object> is not a function.
+PASS [12, 5, 8, 130, 44].every(new Object()) threw exception TypeError: #<Object> is not a function.
 PASS [12, 5, 8, 130, 44].every(null) threw exception TypeError: null is not a function.
 PASS [12, 5, 8, 130, 44].every(undefined) threw exception TypeError: undefined is not a function.
 PASS [12, 5, 8, 130, 44].every() threw exception TypeError: undefined is not a function.
diff --git a/LayoutTests/platform/chromium-win/fast/js/instance-of-immediates-expected.txt b/LayoutTests/platform/chromium-win/fast/js/instance-of-immediates-expected.txt
index 7893926..413a4fc 100644
--- a/LayoutTests/platform/chromium-win/fast/js/instance-of-immediates-expected.txt
+++ b/LayoutTests/platform/chromium-win/fast/js/instance-of-immediates-expected.txt
@@ -4,11 +4,11 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
 
 
 PASS (1 instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got 1.
-PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
-PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
+PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>.
+PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<Constructor>.
 PASS (1 instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got 1.
-PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
-PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
+PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>.
+PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Constructor>.
 PASS (1 instanceof Constructor) is false
 PASS ({} instanceof Constructor) is false
 PASS (obj instanceof Constructor) is true
diff --git a/LayoutTests/platform/chromium-win/fast/js/property-getters-and-setters-expected.txt b/LayoutTests/platform/chromium-win/fast/js/property-getters-and-setters-expected.txt
index fe82413..78f9573 100644
--- a/LayoutTests/platform/chromium-win/fast/js/property-getters-and-setters-expected.txt
+++ b/LayoutTests/platform/chromium-win/fast/js/property-getters-and-setters-expected.txt
@@ -10,7 +10,7 @@ __defineGetter__ and __defineSetter__
 PASS o2.b is 8
 PASS o2.b is 11
 Setting a value without having a setter
-PASS o3.x = 10; threw exception TypeError: Cannot set property x of #<an Object> which has only a getter.
+PASS o3.x = 10; threw exception TypeError: Cannot set property x of #<Object> which has only a getter.
 Getting a value without having a getter
 PASS o4.x is undefined.
 __lookupGetter__ and __lookupSetter__
diff --git a/LayoutTests/platform/chromium-win/storage/transaction-error-callback-expected.txt b/LayoutTests/platform/chromium-win/storage/transaction-error-callback-expected.txt
index cbebda9..3cd9dcf 100644
--- a/LayoutTests/platform/chromium-win/storage/transaction-error-callback-expected.txt
+++ b/LayoutTests/platform/chromium-win/storage/transaction-error-callback-expected.txt
@@ -1,5 +1,5 @@
-CONSOLE MESSAGE: line 63: Uncaught #<an Object>
-CONSOLE MESSAGE: line 63: Uncaught #<an Object>
+CONSOLE MESSAGE: line 63: Uncaught #<Object>
+CONSOLE MESSAGE: line 63: Uncaught #<Object>
 This test confirms that SQLTransactionErrorCallback is invoked correctly and regardless of its output, the transaction is always rolled back on failure.
 Testing transaction failing mid-way and error callback returning true : SUCCESS
 Testing transaction failing mid-way and error callback return false : SUCCESS
diff --git a/LayoutTests/platform/chromium-win/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt b/LayoutTests/platform/chromium-win/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt
index 92da7f3..bab98e9 100644
--- a/LayoutTests/platform/chromium-win/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt
+++ b/LayoutTests/platform/chromium-win/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt
@@ -5,14 +5,14 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
 
 PASS path.pathSegList.initialize(); threw exception SyntaxError: Not enough arguments.
 PASS path.getPathSegAtLength(0) is 0
-PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'insertItemBefore'.
-PASS path.replaceItem(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'replaceItem'.
-PASS path.appendItem(null) threw exception TypeError: Object #<an SVGPathElement> has no method 'appendItem'.
+PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'insertItemBefore'.
+PASS path.replaceItem(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'replaceItem'.
+PASS path.appendItem(null) threw exception TypeError: Object #<SVGPathElement> has no method 'appendItem'.
 List correctly initialised.
 PASS path.getPathSegAtLength(0) is 0
-PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'insertItemBefore'.
-PASS path.replaceItem(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'replaceItem'.
-PASS path.appendItem(null) threw exception TypeError: Object #<an SVGPathElement> has no method 'appendItem'.
+PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'insertItemBefore'.
+PASS path.replaceItem(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'replaceItem'.
+PASS path.appendItem(null) threw exception TypeError: Object #<SVGPathElement> has no method 'appendItem'.
 PASS successfullyParsed is true
 
 TEST COMPLETE

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list