Commit 1e49c9c4 authored by adamk@chromium.org's avatar adamk@chromium.org

Rebaseline JS Array tests that will start passing after v8 r24855

Also mark them as Pass/Failure right now, as they'll start failing
with the rebaselines included in this patch but will pass again
after the next v8 roll.

BUG=426543
TBR=mstarzinger@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/671293002

git-svn-id: svn://svn.chromium.org/blink/trunk@184299 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent ba05b791
...@@ -1480,6 +1480,9 @@ crbug.com/424648 editing/selection/deleteFromDocument-crash.html [ Pass ImageOnl ...@@ -1480,6 +1480,9 @@ crbug.com/424648 editing/selection/deleteFromDocument-crash.html [ Pass ImageOnl
crbug.com/425345 [ Mac ] fast/text/line-break-after-question-mark.html [ Failure ] crbug.com/425345 [ Mac ] fast/text/line-break-after-question-mark.html [ Failure ]
crbug.com/425345 [ Mac ] virtual/textblob/fast/text/line-break-after-question-mark.html [ Failure ] crbug.com/425345 [ Mac ] virtual/textblob/fast/text/line-break-after-question-mark.html [ Failure ]
crbug.com/426543 fast/js/mozilla/strict/15.4.4.9.html [ Pass Failure ]
crbug.com/426543 fast/js/mozilla/strict/15.4.4.13.html [ Pass Failure ]
crbug.com/425537 fast/notifications/notifications-constructor-request-permission.html [ Skip ] crbug.com/425537 fast/notifications/notifications-constructor-request-permission.html [ Skip ]
crbug.com/426041 fast/dom/HTMLImageElement/image-sizes-js-change.html [ Pass Failure ] crbug.com/426041 fast/dom/HTMLImageElement/image-sizes-js-change.html [ Pass Failure ]
...@@ -1487,4 +1490,4 @@ crbug.com/426041 fast/dom/HTMLImageElement/image-sizes-js-change.html [ Pass Fai ...@@ -1487,4 +1490,4 @@ crbug.com/426041 fast/dom/HTMLImageElement/image-sizes-js-change.html [ Pass Fai
#crbug.com/401377 [ Win Release ] http/tests/serviceworker/fetch-mixed-content.html [ Pass Timeout ] #crbug.com/401377 [ Win Release ] http/tests/serviceworker/fetch-mixed-content.html [ Pass Timeout ]
crbug.com/426047 http/tests/serviceworker/fetch-mixed-content.html [ Pass Timeout ] crbug.com/426047 http/tests/serviceworker/fetch-mixed-content.html [ Pass Timeout ]
crbug.com/426078 [ Win7 ] http/tests/security/img-crossorigin-no-credentials-prompt.html [ Pass Timeout ] crbug.com/426078 [ Win7 ] http/tests/security/img-crossorigin-no-credentials-prompt.html [ Pass Timeout ]
\ No newline at end of file
FAIL 'use strict'; var a = arr(); [a.unshift(40, 50), a] should throw an instance of TypeError PASS 'use strict'; var a = arr(); [a.unshift(40, 50), a] threw exception of type TypeError.
FAIL var a = arr(); [a.unshift(40, 50), a] should throw an instance of TypeError PASS var a = arr(); [a.unshift(40, 50), a] threw exception of type TypeError.
PASS true === true PASS true === true
PASS 'use strict'; var o = obj(); [Array.prototype.unshift.call(o, 40, 50), o] threw exception of type TypeError. PASS 'use strict'; var o = obj(); [Array.prototype.unshift.call(o, 40, 50), o] threw exception of type TypeError.
PASS var o = obj(); [Array.prototype.unshift.call(o, 40, 50), o] threw exception of type TypeError. PASS var o = obj(); [Array.prototype.unshift.call(o, 40, 50), o] threw exception of type TypeError.
PASS true === true PASS true === true
FAIL 'use strict'; var a = agap(); [a.unshift(9), a] should throw an instance of TypeError PASS 'use strict'; var a = agap(); [a.unshift(9), a] threw exception of type TypeError.
FAIL var a = agap(); [a.unshift(9), a] should throw an instance of TypeError PASS var a = agap(); [a.unshift(9), a] threw exception of type TypeError.
PASS true === true PASS true === true
PASS 'use strict'; var o = ogap(); [Array.prototype.unshift.call(o, 9), o] threw exception of type TypeError. PASS 'use strict'; var o = ogap(); [Array.prototype.unshift.call(o, 9), o] threw exception of type TypeError.
PASS var o = ogap(); [Array.prototype.unshift.call(o, 9), o] threw exception of type TypeError. PASS var o = ogap(); [Array.prototype.unshift.call(o, 9), o] threw exception of type TypeError.
......
FAIL 'use strict'; var a = arr(); [a.shift(), a] should throw an instance of TypeError PASS 'use strict'; var a = arr(); [a.shift(), a] threw exception of type TypeError.
FAIL var a = arr(); [a.shift(), a] should throw an instance of TypeError PASS var a = arr(); [a.shift(), a] threw exception of type TypeError.
PASS true === true PASS true === true
PASS 'use strict'; var o = obj(); [Array.prototype.shift.call(o), o] threw exception of type TypeError. PASS 'use strict'; var o = obj(); [Array.prototype.shift.call(o), o] threw exception of type TypeError.
PASS var o = obj(); [Array.prototype.shift.call(o), o] threw exception of type TypeError. PASS var o = obj(); [Array.prototype.shift.call(o), o] threw exception of type TypeError.
PASS true === true PASS true === true
FAIL 'use strict'; var a = agap(); [a.shift(), a] should throw an instance of TypeError PASS 'use strict'; var a = agap(); [a.shift(), a] threw exception of type TypeError.
FAIL var a = agap(); [a.shift(), a] should throw an instance of TypeError PASS var a = agap(); [a.shift(), a] threw exception of type TypeError.
PASS true === true PASS true === true
PASS 'use strict'; var o = ogap(); [Array.prototype.shift.call(o), o] threw exception of type TypeError. PASS 'use strict'; var o = ogap(); [Array.prototype.shift.call(o), o] threw exception of type TypeError.
PASS var o = ogap(); [Array.prototype.shift.call(o), o] threw exception of type TypeError. PASS var o = ogap(); [Array.prototype.shift.call(o), o] threw exception of type TypeError.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment