Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: LayoutTests/fast/js/array-every-expected.txt

Issue 14146002: Remove all generic expected results for which a generic Chromium expected result exists (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/js/array-every-expected.txt
diff --git a/LayoutTests/fast/js/array-every-expected.txt b/LayoutTests/fast/js/array-every-expected.txt
deleted file mode 100644
index 541b8c358f068a0cea882c105175325114cd33f7..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/array-every-expected.txt
+++ /dev/null
@@ -1,52 +0,0 @@
-This test checks the behavior of the every() method on Array objects.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-1.0 Single Argument Testing
-PASS [12, 5, 8, 130, 44].every(isBigEnough) is false
-PASS [12, 54, 18, 130, 44].every(isBigEnough) is true
-
-2.0 Two Argument Testing
-PASS [12, 5, 10, 130, 44].every(isBigEnough, predicate) is false
-PASS [12, 54, 18, 130, 44].every(isBigEnough, predicate) is true
-
-3.0 Array Mutation Tests
-
-3.1 Array Element Removal
-PASS [12, 5, 8, 130, 44].every(isBigEnoughAndPop) is false
-PASS [12, 54, 18, 130, 44].every(isBigEnoughAndPop) is true
-
-3.2 Array Element Changing
-PASS [12, 5, 8, 130, 44].every(isBigEnoughAndChange) is false
-PASS [12, 54, 18, 130, 44].every(isBigEnoughAndChange) is false
-
-3.3 Array Element Addition
-PASS [12, 5, 8, 130, 44].every(isBigEnoughAndPush) is false
-PASS [12, 54, 18, 130, 44].every(isBigEnoughAndPush) is false
-
-4.0 Exception Test
-PASS [12, 5, 8, 130, 44].every(isBigEnoughAndException) threw exception exception from function.
-PASS [12, 54, 18, 130, 44].every(isBigEnoughAndException) threw exception exception from function.
-
-5.0 Wrong Type for Callback Test
-PASS [12, 5, 8, 130, 44].every(5) threw exception TypeError: Type error.
-PASS [12, 5, 8, 130, 44].every('wrong') threw exception TypeError: Type error.
-PASS [12, 5, 8, 130, 44].every(new Object()) threw exception TypeError: Type error.
-PASS [12, 5, 8, 130, 44].every(null) threw exception TypeError: Type error.
-PASS [12, 5, 8, 130, 44].every(undefined) threw exception TypeError: Type error.
-PASS [12, 5, 8, 130, 44].every() threw exception TypeError: Type error.
-
-6.0 Early Exit ("Short Circuiting")
-PASS [12, 5, 8, 130, 44].every(isBigEnoughShortCircuit) is false
-PASS accumulator.toString() is [12, 5].toString()
-PASS [12, 54, 18, 130, 44].every(isBigEnoughShortCircuit) is true
-PASS accumulator.toString() is [12, 54, 18, 130, 44].toString()
-
-7.0 Behavior for Holes in Arrays
-PASS arr.every(isNotUndefined) is true
-PASS arr.every(isNotUndefined) is true
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
« no previous file with comments | « LayoutTests/fast/js/Object-defineProperties-expected.txt ('k') | LayoutTests/fast/js/array-foreach-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698