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

Side by Side Diff: LayoutTests/webexposed/global-constructors-attributes-expected.txt

Issue 16528005: Add layout test to verify that global constructors in workers environment have right attributes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 Test to ensure that global constructors have the right attributes 1 Test to ensure that global constructors have the right attributes
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS Object.getOwnPropertyDescriptor(global, 'CSSRuleList').value is CSSRuleList 6 PASS Object.getOwnPropertyDescriptor(global, 'CSSRuleList').value is CSSRuleList
7 PASS Object.getOwnPropertyDescriptor(global, 'CSSRuleList').hasOwnProperty('get' ) is false 7 PASS Object.getOwnPropertyDescriptor(global, 'CSSRuleList').hasOwnProperty('get' ) is false
8 PASS Object.getOwnPropertyDescriptor(global, 'CSSRuleList').hasOwnProperty('set' ) is false 8 PASS Object.getOwnPropertyDescriptor(global, 'CSSRuleList').hasOwnProperty('set' ) is false
9 PASS Object.getOwnPropertyDescriptor(global, 'CSSRuleList').enumerable is false 9 PASS Object.getOwnPropertyDescriptor(global, 'CSSRuleList').enumerable is false
10 PASS Object.getOwnPropertyDescriptor(global, 'CSSRuleList').configurable is true 10 PASS Object.getOwnPropertyDescriptor(global, 'CSSRuleList').configurable is true
(...skipping 24 matching lines...) Expand all
35 PASS Object.getOwnPropertyDescriptor(global, 'Selection').configurable is true 35 PASS Object.getOwnPropertyDescriptor(global, 'Selection').configurable is true
36 PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').value is XMLHttpR equest 36 PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').value is XMLHttpR equest
37 PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').hasOwnProperty('g et') is false 37 PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').hasOwnProperty('g et') is false
38 PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').hasOwnProperty('s et') is false 38 PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').hasOwnProperty('s et') is false
39 PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').enumerable is fal se 39 PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').enumerable is fal se
40 PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').configurable is t rue 40 PASS Object.getOwnPropertyDescriptor(global, 'XMLHttpRequest').configurable is t rue
41 PASS successfullyParsed is true 41 PASS successfullyParsed is true
42 42
43 TEST COMPLETE 43 TEST COMPLETE
44 44
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698