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

Unified Diff: LayoutTests/fast/js/property-getters-and-setters-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/property-getters-and-setters-expected.txt
diff --git a/LayoutTests/fast/js/property-getters-and-setters-expected.txt b/LayoutTests/fast/js/property-getters-and-setters-expected.txt
deleted file mode 100644
index 78a00a41197622e5cf730492071de0d2d0e354f8..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/property-getters-and-setters-expected.txt
+++ /dev/null
@@ -1,42 +0,0 @@
-This performs a number of different tests on JavaScript getters and setters.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-the get set object declaration syntax
-PASS o1.b is 8
-PASS o1.b is 11
-__defineGetter__ and __defineSetter__
-PASS o2.b is 8
-PASS o2.b is 11
-Setting a value without having a setter
-PASS o3.x = 10; o3.x is 42
-Getting a value without having a getter
-PASS o4.x is undefined.
-__lookupGetter__ and __lookupSetter__
-PASS o4.__lookupGetter__('b') is getB
-PASS o4.__lookupSetter__('b') is setB
-__defineGetter__ and __defineSetter__ with various invalid arguments
-PASS o5.__defineSetter__('a', null) threw exception TypeError: invalid setter usage.
-PASS o5.__defineSetter__('a', o5) threw exception TypeError: invalid setter usage.
-PASS o5.__defineGetter__('a', null) threw exception TypeError: invalid getter usage.
-PASS o5.__defineGetter__('a', o5) threw exception TypeError: invalid getter usage.
-setters and getters with exceptions
-PASS x = o6.x threw exception Exception in get.
-PASS x is 0
-PASS o6.x = 42 threw exception Exception in set.
-Defining a setter should also define a getter for the same property which returns undefined. Thus, a getter defined on the prototype should not be called.
-PASS o7.x is undefined.
-If an object has a property and its prototype has a setter function for that property, then setting the property should set the property directly and not call the setter function.
-PASS o8.numSets is 0
-PASS typeof testObj.getter is 'string'
-the get set with string property name
-PASS o9.b is 8
-PASS o9.b is 11
-the get set with numeric property name
-PASS o10[42] is 8
-PASS o10[42] is 11
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
« no previous file with comments | « LayoutTests/fast/js/prefix-syntax-expected.txt ('k') | LayoutTests/fast/js/recursion-limit-equal-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698