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

Unified Diff: LayoutTests/fast/js/Object-create-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/Object-create-expected.txt
diff --git a/LayoutTests/fast/js/Object-create-expected.txt b/LayoutTests/fast/js/Object-create-expected.txt
deleted file mode 100644
index 7eb4cf90bd0090c39af5da5e18270e2e612fad2a..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/Object-create-expected.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-Test to ensure correct behaviour of Object.defineProperties
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS Object.create() threw exception TypeError: Object prototype may only be an Object or null..
-PASS Object.create('a string') threw exception TypeError: Object prototype may only be an Object or null..
-PASS Object.create({}, 'a string') threw exception TypeError: Property descriptor list must be an Object..
-PASS Object.create(null, 'a string') threw exception TypeError: Property descriptor list must be an Object..
-PASS JSON.stringify(Object.create(null,{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}'
-PASS JSON.stringify(Object.create({},{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}'
-PASS JSON.stringify(Object.create({},{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}'
-PASS JSON.stringify(Object.create(null,{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}'
-PASS Object.getPrototypeOf(Object.create(Array.prototype)) is Array.prototype
-PASS Object.getPrototypeOf(Object.create(null)) is null
-PASS Object.create(null, DescriptorWithValueGetter).foo is true
-PASS Object.create(null, DescriptorWithEnumerableGetter).foo is true
-PASS Object.create(null, DescriptorWithConfigurableGetter).foo is true
-PASS Object.create(null, DescriptorWithWritableGetter).foo is true
-PASS Object.create(null, DescriptorWithGetGetter).foo is true
-PASS Object.create(null, DescriptorWithSetGetter).foo is true
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
« no previous file with comments | « LayoutTests/fast/js/JSON-stringify-replacer-expected.txt ('k') | LayoutTests/fast/js/Object-defineProperties-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698