Changeset 77135 in webkit


Ignore:
Timestamp:
Jan 31, 2011 9:18:21 AM (13 years ago)
Author:
ager@chromium.org
Message:

2011-01-31 Mads Ager <ager@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:
Location:
trunk/LayoutTests
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r77134 r77135  
     12011-01-31  Mads Ager  <ager@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        [V8] Update V8 specific layout test expectations
     6        https://bugs.webkit.org/show_bug.cgi?id=53423
     7
     8        Error formatting has changed in V8. Updating chromium specific
     9        layout test expectations accordingly.
     10
     11        * platform/chromium-mac/fast/js/array-every-expected.txt:
     12        * platform/chromium-mac/fast/js/instance-of-immediates-expected.txt:
     13        * platform/chromium-mac/fast/js/property-getters-and-setters-expected.txt:
     14        * platform/chromium-mac/storage/transaction-error-callback-expected.txt:
     15        * platform/chromium-mac/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt:
     16        * platform/chromium-win/fast/js/array-every-expected.txt:
     17        * platform/chromium-win/fast/js/instance-of-immediates-expected.txt:
     18        * platform/chromium-win/fast/js/property-getters-and-setters-expected.txt:
     19        * platform/chromium-win/storage/transaction-error-callback-expected.txt:
     20        * platform/chromium-win/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt:
     21
    1222011-01-31  Alejandro G. Castro  <alex@igalia.com>
    223
  • trunk/LayoutTests/platform/chromium-mac/fast/js/array-every-expected.txt

    r74097 r77135  
    3333PASS [12, 5, 8, 130, 44].every(5) threw exception TypeError: 5 is not a function.
    3434PASS [12, 5, 8, 130, 44].every('wrong') threw exception TypeError: wrong is not a function.
    35 PASS [12, 5, 8, 130, 44].every(new Object()) threw exception TypeError: #<an Object> is not a function.
     35PASS [12, 5, 8, 130, 44].every(new Object()) threw exception TypeError: #<Object> is not a function.
    3636PASS [12, 5, 8, 130, 44].every(null) threw exception TypeError: null is not a function.
    3737PASS [12, 5, 8, 130, 44].every(undefined) threw exception TypeError: undefined is not a function.
  • trunk/LayoutTests/platform/chromium-mac/fast/js/instance-of-immediates-expected.txt

    r56251 r77135  
    55
    66PASS (1 instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got 1.
    7 PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
    8 PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
     7PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>.
     8PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<Constructor>.
    99PASS (1 instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got 1.
    10 PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
    11 PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
     10PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>.
     11PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Constructor>.
    1212PASS (1 instanceof Constructor) is false
    1313PASS ({} instanceof Constructor) is false
  • trunk/LayoutTests/platform/chromium-mac/fast/js/property-getters-and-setters-expected.txt

    r74097 r77135  
    1111PASS o2.b is 11
    1212Setting a value without having a setter
    13 PASS o3.x = 10; threw exception TypeError: Cannot set property x of #<an Object> which has only a getter.
     13PASS o3.x = 10; threw exception TypeError: Cannot set property x of #<Object> which has only a getter.
    1414Getting a value without having a getter
    1515PASS o4.x is undefined.
  • trunk/LayoutTests/platform/chromium-mac/storage/transaction-error-callback-expected.txt

    r74097 r77135  
    1 CONSOLE MESSAGE: line 63: Uncaught #<an Object>
    2 CONSOLE MESSAGE: line 63: Uncaught #<an Object>
     1CONSOLE MESSAGE: line 63: Uncaught #<Object>
     2CONSOLE MESSAGE: line 63: Uncaught #<Object>
    33This test confirms that SQLTransactionErrorCallback is invoked correctly and regardless of its output, the transaction is always rolled back on failure.
    44Testing transaction failing mid-way and error callback returning true : SUCCESS
  • trunk/LayoutTests/platform/chromium-mac/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt

    r74097 r77135  
    66PASS path.pathSegList.initialize(); threw exception SyntaxError: Not enough arguments.
    77PASS path.getPathSegAtLength(0) is 0
    8 PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'insertItemBefore'.
    9 PASS path.replaceItem(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'replaceItem'.
    10 PASS path.appendItem(null) threw exception TypeError: Object #<an SVGPathElement> has no method 'appendItem'.
     8PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'insertItemBefore'.
     9PASS path.replaceItem(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'replaceItem'.
     10PASS path.appendItem(null) threw exception TypeError: Object #<SVGPathElement> has no method 'appendItem'.
    1111List correctly initialised.
    1212PASS path.getPathSegAtLength(0) is 0
    13 PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'insertItemBefore'.
    14 PASS path.replaceItem(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'replaceItem'.
    15 PASS path.appendItem(null) threw exception TypeError: Object #<an SVGPathElement> has no method 'appendItem'.
     13PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'insertItemBefore'.
     14PASS path.replaceItem(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'replaceItem'.
     15PASS path.appendItem(null) threw exception TypeError: Object #<SVGPathElement> has no method 'appendItem'.
    1616PASS successfullyParsed is true
    1717
  • trunk/LayoutTests/platform/chromium-win/fast/js/array-every-expected.txt

    r74097 r77135  
    3333PASS [12, 5, 8, 130, 44].every(5) threw exception TypeError: 5 is not a function.
    3434PASS [12, 5, 8, 130, 44].every('wrong') threw exception TypeError: wrong is not a function.
    35 PASS [12, 5, 8, 130, 44].every(new Object()) threw exception TypeError: #<an Object> is not a function.
     35PASS [12, 5, 8, 130, 44].every(new Object()) threw exception TypeError: #<Object> is not a function.
    3636PASS [12, 5, 8, 130, 44].every(null) threw exception TypeError: null is not a function.
    3737PASS [12, 5, 8, 130, 44].every(undefined) threw exception TypeError: undefined is not a function.
  • trunk/LayoutTests/platform/chromium-win/fast/js/instance-of-immediates-expected.txt

    r56267 r77135  
    55
    66PASS (1 instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got 1.
    7 PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
    8 PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
     7PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>.
     8PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<Constructor>.
    99PASS (1 instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got 1.
    10 PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
    11 PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
     10PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Object>.
     11PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<Constructor>.
    1212PASS (1 instanceof Constructor) is false
    1313PASS ({} instanceof Constructor) is false
  • trunk/LayoutTests/platform/chromium-win/fast/js/property-getters-and-setters-expected.txt

    r74097 r77135  
    1111PASS o2.b is 11
    1212Setting a value without having a setter
    13 PASS o3.x = 10; threw exception TypeError: Cannot set property x of #<an Object> which has only a getter.
     13PASS o3.x = 10; threw exception TypeError: Cannot set property x of #<Object> which has only a getter.
    1414Getting a value without having a getter
    1515PASS o4.x is undefined.
  • trunk/LayoutTests/platform/chromium-win/storage/transaction-error-callback-expected.txt

    r74097 r77135  
    1 CONSOLE MESSAGE: line 63: Uncaught #<an Object>
    2 CONSOLE MESSAGE: line 63: Uncaught #<an Object>
     1CONSOLE MESSAGE: line 63: Uncaught #<Object>
     2CONSOLE MESSAGE: line 63: Uncaught #<Object>
    33This test confirms that SQLTransactionErrorCallback is invoked correctly and regardless of its output, the transaction is always rolled back on failure.
    44Testing transaction failing mid-way and error callback returning true : SUCCESS
  • trunk/LayoutTests/platform/chromium-win/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt

    r74097 r77135  
    66PASS path.pathSegList.initialize(); threw exception SyntaxError: Not enough arguments.
    77PASS path.getPathSegAtLength(0) is 0
    8 PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'insertItemBefore'.
    9 PASS path.replaceItem(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'replaceItem'.
    10 PASS path.appendItem(null) threw exception TypeError: Object #<an SVGPathElement> has no method 'appendItem'.
     8PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'insertItemBefore'.
     9PASS path.replaceItem(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'replaceItem'.
     10PASS path.appendItem(null) threw exception TypeError: Object #<SVGPathElement> has no method 'appendItem'.
    1111List correctly initialised.
    1212PASS path.getPathSegAtLength(0) is 0
    13 PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'insertItemBefore'.
    14 PASS path.replaceItem(null, 0) threw exception TypeError: Object #<an SVGPathElement> has no method 'replaceItem'.
    15 PASS path.appendItem(null) threw exception TypeError: Object #<an SVGPathElement> has no method 'appendItem'.
     13PASS path.insertItemBefore(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'insertItemBefore'.
     14PASS path.replaceItem(null, 0) threw exception TypeError: Object #<SVGPathElement> has no method 'replaceItem'.
     15PASS path.appendItem(null) threw exception TypeError: Object #<SVGPathElement> has no method 'appendItem'.
    1616PASS successfullyParsed is true
    1717
Note: See TracChangeset for help on using the changeset viewer.