From: barraclough@apple.com Date: Wed, 28 Sep 2011 19:24:24 +0000 (+0000) Subject: https://bugs.webkit.org/show_bug.cgi?id=64679 X-Git-Tag: 070512121124~23441 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8b64b58d4b8e16f5effe88c91b7347aec0000f75;p=profile%2Fivi%2Fwebkit-efl.git https://bugs.webkit.org/show_bug.cgi?id=64679 Fix bugs in Array.prototype this handling. Reviewed by Oliver Hunt. * fast/js/array-prototype-properties-expected.txt: Added. * fast/js/array-prototype-properties.html: Added. * fast/js/script-tests/array-prototype-properties.js: Added. - Added layout test for array prototype functions with undefined as this value. * ietestcenter/Javascript/15.4.4.14-5-28-expected.txt: * ietestcenter/Javascript/15.4.4.15-5-28-expected.txt: - These tests now pass. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@96246 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog index 3d4e608..922ac8f 100644 --- a/LayoutTests/ChangeLog +++ b/LayoutTests/ChangeLog @@ -1,3 +1,18 @@ +2011-09-28 Gavin Barraclough + + https://bugs.webkit.org/show_bug.cgi?id=64679 + Fix bugs in Array.prototype this handling. + + Reviewed by Oliver Hunt. + + * fast/js/array-prototype-properties-expected.txt: Added. + * fast/js/array-prototype-properties.html: Added. + * fast/js/script-tests/array-prototype-properties.js: Added. + - Added layout test for array prototype functions with undefined as this value. + * ietestcenter/Javascript/15.4.4.14-5-28-expected.txt: + * ietestcenter/Javascript/15.4.4.15-5-28-expected.txt: + - These tests now pass. + 2011-09-28 Mihai Parparita Rebaseline fast/canvas/canvas-composite-transformclip.html and diff --git a/LayoutTests/fast/js/array-prototype-properties-expected.txt b/LayoutTests/fast/js/array-prototype-properties-expected.txt index 8cc2c35..706cc5f 100644 --- a/LayoutTests/fast/js/array-prototype-properties-expected.txt +++ b/LayoutTests/fast/js/array-prototype-properties-expected.txt @@ -5,25 +5,25 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE PASS Array.prototype.toString.call(undefined) threw exception TypeError: Type error. PASS Array.prototype.toLocaleString.call(undefined) threw exception TypeError: Type error. -FAIL Array.prototype.concat.call(undefined, []) should throw an exception. Was [object DOMWindow]. -FAIL Array.prototype.join.call(undefined, []) should throw an exception. Was . -FAIL Array.prototype.pop.call(undefined) should throw an exception. Was undefined. -FAIL Array.prototype.push.call(undefined, {}) should throw an exception. Was 1. -FAIL Array.prototype.reverse.call(undefined) should throw an exception. Was [object DOMWindow]. -FAIL Array.prototype.shift.call(undefined) should throw an exception. Was [object Object]. -FAIL Array.prototype.slice.call(undefined, 0, 1) should throw an exception. Was . -FAIL Array.prototype.sort.call(undefined) should throw an exception. Was [object DOMWindow]. -FAIL Array.prototype.splice.call(undefined, 0, 1) should throw an exception. Was . -FAIL Array.prototype.unshift.call(undefined, {}) should throw an exception. Was 1. -FAIL Array.prototype.every.call(undefined, toString) should throw an exception. Was true. -FAIL Array.prototype.forEach.call(undefined, toString) should throw an exception. Was undefined. -FAIL Array.prototype.some.call(undefined, toString) should throw an exception. Was true. -FAIL Array.prototype.indexOf.call(undefined, 0) should throw an exception. Was -1. +PASS Array.prototype.concat.call(undefined, []) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.concat.call(undefined, [])'). +PASS Array.prototype.join.call(undefined, []) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.join.call(undefined, [])'). +PASS Array.prototype.pop.call(undefined) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.pop.call(undefined)'). +PASS Array.prototype.push.call(undefined, {}) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.push.call(undefined, {})'). +PASS Array.prototype.reverse.call(undefined) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.reverse.call(undefined)'). +PASS Array.prototype.shift.call(undefined) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.shift.call(undefined)'). +PASS Array.prototype.slice.call(undefined, 0, 1) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.slice.call(undefined, 0, 1)'). +PASS Array.prototype.sort.call(undefined) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.sort.call(undefined)'). +PASS Array.prototype.splice.call(undefined, 0, 1) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.splice.call(undefined, 0, 1)'). +PASS Array.prototype.unshift.call(undefined, {}) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.unshift.call(undefined, {})'). +PASS Array.prototype.every.call(undefined, toString) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.every.call(undefined, toString)'). +PASS Array.prototype.forEach.call(undefined, toString) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.forEach.call(undefined, toString)'). +PASS Array.prototype.some.call(undefined, toString) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.some.call(undefined, toString)'). +PASS Array.prototype.indexOf.call(undefined, 0) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.indexOf.call(undefined, 0)'). PASS Array.prototype.indlastIndexOfexOf.call(undefined, 0) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.indlastIndexOfexOf.call'). -FAIL Array.prototype.filter.call(undefined, toString) should throw an exception. Was [object Object]. -FAIL Array.prototype.reduce.call(undefined, toString) should throw an exception. Was [object Object]. -FAIL Array.prototype.reduceRight.call(undefined, toString) should throw an exception. Was [object Object]. -FAIL Array.prototype.map.call(undefined, toString) should throw an exception. Was [object Undefined]. +PASS Array.prototype.filter.call(undefined, toString) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.filter.call(undefined, toString)'). +PASS Array.prototype.reduce.call(undefined, toString) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.reduce.call(undefined, toString)'). +PASS Array.prototype.reduceRight.call(undefined, toString) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.reduceRight.call(undefined, toString)'). +PASS Array.prototype.map.call(undefined, toString) threw exception TypeError: 'undefined' is not an object (evaluating 'Array.prototype.map.call(undefined, toString)'). PASS successfullyParsed is true TEST COMPLETE diff --git a/LayoutTests/ietestcenter/Javascript/15.4.4.14-5-28-expected.txt b/LayoutTests/ietestcenter/Javascript/15.4.4.14-5-28-expected.txt index 8cfa007..30b91c5 100644 --- a/LayoutTests/ietestcenter/Javascript/15.4.4.14-5-28-expected.txt +++ b/LayoutTests/ietestcenter/Javascript/15.4.4.14-5-28-expected.txt @@ -4,7 +4,7 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE PASS ES5Harness.preconditionPassed is true -FAIL ES5Harness.testPassed should be true. Was false. +PASS ES5Harness.testPassed is true PASS successfullyParsed is true TEST COMPLETE diff --git a/LayoutTests/ietestcenter/Javascript/15.4.4.15-5-28-expected.txt b/LayoutTests/ietestcenter/Javascript/15.4.4.15-5-28-expected.txt index dbd2b5b..41e61f6 100644 --- a/LayoutTests/ietestcenter/Javascript/15.4.4.15-5-28-expected.txt +++ b/LayoutTests/ietestcenter/Javascript/15.4.4.15-5-28-expected.txt @@ -4,7 +4,7 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE PASS ES5Harness.preconditionPassed is true -FAIL ES5Harness.testPassed should be true. Was false. +PASS ES5Harness.testPassed is true PASS successfullyParsed is true TEST COMPLETE