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

Unified Diff: LayoutTests/fast/js/getOwnPropertyDescriptor-expected.txt

Issue 948583002: Bindings: Make interface operation (method) properties configurable (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline newly behaving tests Created 5 years, 10 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/getOwnPropertyDescriptor-expected.txt
diff --git a/LayoutTests/fast/js/getOwnPropertyDescriptor-expected.txt b/LayoutTests/fast/js/getOwnPropertyDescriptor-expected.txt
index a9cd25d38c664e0a9c51d127d13be42c79e10db5..fa1a45756a5108a53c564d1125699cd5d42be8d1 100644
--- a/LayoutTests/fast/js/getOwnPropertyDescriptor-expected.txt
+++ b/LayoutTests/fast/js/getOwnPropertyDescriptor-expected.txt
@@ -33,7 +33,12 @@ PASS Object.getOwnPropertyDescriptor(document.__proto__.__proto__, 'createElemen
PASS Object.getOwnPropertyDescriptor(document.__proto__.__proto__, 'createElement').hasOwnProperty('get') is false
PASS Object.getOwnPropertyDescriptor(document.__proto__.__proto__, 'createElement').hasOwnProperty('set') is false
PASS Object.getOwnPropertyDescriptor(document.__proto__.__proto__, 'createElement').enumerable is true
-PASS Object.getOwnPropertyDescriptor(document.__proto__.__proto__, 'createElement').configurable is false
+PASS Object.getOwnPropertyDescriptor(document.__proto__.__proto__, 'createElement').configurable is true
+PASS Object.getOwnPropertyDescriptor(window, 'location').value is window.location
+PASS Object.getOwnPropertyDescriptor(window, 'location').hasOwnProperty('get') is false
+PASS Object.getOwnPropertyDescriptor(window, 'location').hasOwnProperty('set') is false
+PASS Object.getOwnPropertyDescriptor(window, 'location').enumerable is true
+PASS Object.getOwnPropertyDescriptor(window, 'location').configurable is false
PASS Object.getOwnPropertyDescriptor(Number, 'NEGATIVE_INFINITY').value is Number.NEGATIVE_INFINITY
PASS Object.getOwnPropertyDescriptor(Number, 'NEGATIVE_INFINITY').hasOwnProperty('get') is false
PASS Object.getOwnPropertyDescriptor(Number, 'NEGATIVE_INFINITY').hasOwnProperty('set') is false
« no previous file with comments | « LayoutTests/canvas/philip/tests/type.prototype-expected.txt ('k') | LayoutTests/fast/js/resources/getOwnPropertyDescriptor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698