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

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

Issue 14447006: Global constructors should be configurable and not enumerable (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Clean rebase on master 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/getOwnPropertyDescriptor-expected.txt
diff --git a/LayoutTests/fast/js/getOwnPropertyDescriptor-expected.txt b/LayoutTests/fast/js/getOwnPropertyDescriptor-expected.txt
index 56c2896589df1097f06139e0f0e921d7f64351cf..0554454917745aa7ad7828a37f5f24eb7e4c0ba7 100644
--- a/LayoutTests/fast/js/getOwnPropertyDescriptor-expected.txt
+++ b/LayoutTests/fast/js/getOwnPropertyDescriptor-expected.txt
@@ -127,8 +127,8 @@ PASS Object.getOwnPropertyDescriptor(global, 'window').configurable is false
PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').value is XMLHttpRequest
PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').hasOwnProperty('get') is false
PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').hasOwnProperty('set') is false
-PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').enumerable is true
-PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').configurable is false
+PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').enumerable is false
+PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').configurable is true
PASS Object.getOwnPropertyDescriptor(global, 'length').value is global.length
PASS Object.getOwnPropertyDescriptor(global, 'length').hasOwnProperty('get') is false
PASS Object.getOwnPropertyDescriptor(global, 'length').hasOwnProperty('set') is false

Powered by Google App Engine
This is Rietveld 408576698