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

Side by Side Diff: LayoutTests/fast/dom/getter-on-window-object2-expected.txt

Issue 54473004: Make js-test-post a noop. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add mac NeedsRebaselines Created 7 years, 1 month 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 This page tests what happens when a getter / setter on the window object conflic ts with another property or declared variable 1 This page tests what happens when a getter / setter on the window object conflic ts with another property or declared variable
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 window.x is 1 6 PASS window.x is 1
7 PASS typeof window.__lookupGetter__('x') is 'undefined' 7 PASS typeof window.__lookupGetter__('x') is 'undefined'
8 PASS typeof Object.getOwnPropertyDescriptor(window, 'x').get is 'undefined' 8 PASS typeof Object.getOwnPropertyDescriptor(window, 'x').get is 'undefined'
9 9
10 PASS window.x is 2 10 PASS window.x is 2
11 PASS typeof window.__lookupGetter__('x') is 'undefined' 11 PASS typeof window.__lookupGetter__('x') is 'undefined'
12 PASS typeof Object.getOwnPropertyDescriptor(window, 'x').get is 'undefined' 12 PASS typeof Object.getOwnPropertyDescriptor(window, 'x').get is 'undefined'
13 13
14 PASS window.y is 'window.y __getter__' 14 PASS window.y is 'window.y __getter__'
15 PASS typeof window.__lookupGetter__('y') is 'function' 15 PASS typeof window.__lookupGetter__('y') is 'function'
16 PASS typeof Object.getOwnPropertyDescriptor(window, 'y').get is 'function' 16 PASS typeof Object.getOwnPropertyDescriptor(window, 'y').get is 'function'
17 17
18 PASS window.y is 'window.y __getter__' 18 PASS window.y is 'window.y __getter__'
19 PASS typeof window.__lookupGetter__('y') is 'function' 19 PASS typeof window.__lookupGetter__('y') is 'function'
20 PASS typeof Object.getOwnPropertyDescriptor(window, 'y').get is 'function' 20 PASS typeof Object.getOwnPropertyDescriptor(window, 'y').get is 'function'
21 21
22 PASS window.z is undefined. 22 PASS window.z is undefined.
23 PASS typeof window.__lookupSetter__('z') is 'function' 23 PASS typeof window.__lookupSetter__('z') is 'function'
24 PASS typeof Object.getOwnPropertyDescriptor(window, 'z').set is 'function' 24 PASS typeof Object.getOwnPropertyDescriptor(window, 'z').set is 'function'
25 PASS successfullyParsed is true
25 26
27 TEST COMPLETE
28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698