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

Side by Side Diff: LayoutTests/fast/dom/Window/window-function-frame-getter-precedence-expected.txt

Issue 1121703002: bindings: Uses V8's named property interceptor for Window. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 5 years, 3 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 This tests that a frame with a the same name as function on the window object, h as precedence in the lookup. 1 This tests that functions of the window object and it's prototype have precedenc e in lookup over frames with name's of the same name.
2 2
3 PASS: typeof window.getSelection should be object and is. 3 PASS: typeof window.getSelection should be function and is.
4 PASS: typeof window.focus should be object and is. 4 PASS: typeof window.focus should be function and is.
5 PASS: typeof window.blur should be object and is. 5 PASS: typeof window.blur should be function and is.
6 PASS: typeof window.close should be object and is. 6 PASS: typeof window.close should be function and is.
7 PASS: typeof window.print should be object and is. 7 PASS: typeof window.print should be function and is.
8 PASS: typeof window.stop should be object and is. 8 PASS: typeof window.stop should be function and is.
9 PASS: typeof window.alert should be object and is. 9 PASS: typeof window.alert should be function and is.
10 PASS: typeof window.confirm should be object and is. 10 PASS: typeof window.confirm should be function and is.
11 PASS: typeof window.prompt should be object and is. 11 PASS: typeof window.prompt should be function and is.
12 PASS: typeof window.find should be object and is. 12 PASS: typeof window.find should be function and is.
13 PASS: typeof window.scrollBy should be object and is. 13 PASS: typeof window.scrollBy should be function and is.
14 PASS: typeof window.scrollTo should be object and is. 14 PASS: typeof window.scrollTo should be function and is.
15 PASS: typeof window.scroll should be object and is. 15 PASS: typeof window.scroll should be function and is.
16 PASS: typeof window.moveBy should be object and is. 16 PASS: typeof window.moveBy should be function and is.
17 PASS: typeof window.moveTo should be object and is. 17 PASS: typeof window.moveTo should be function and is.
18 PASS: typeof window.resizeBy should be object and is. 18 PASS: typeof window.resizeBy should be function and is.
19 PASS: typeof window.resizeTo should be object and is. 19 PASS: typeof window.resizeTo should be function and is.
20 PASS: typeof window.getComputedStyle should be object and is. 20 PASS: typeof window.getComputedStyle should be function and is.
21 PASS: typeof window.getMatchedCSSRules should be object and is. 21 PASS: typeof window.getMatchedCSSRules should be function and is.
22 PASS: typeof window.openDatabase should be object and is. 22 PASS: typeof window.openDatabase should be function and is.
23 PASS: typeof window.postMessage should be object and is. 23 PASS: typeof window.postMessage should be function and is.
24 PASS: typeof window.atob should be object and is. 24 PASS: typeof window.atob should be function and is.
25 PASS: typeof window.btoa should be object and is. 25 PASS: typeof window.btoa should be function and is.
26 PASS: typeof window.open should be object and is. 26 PASS: typeof window.open should be function and is.
27 PASS: typeof window.setTimeout should be object and is. 27 PASS: typeof window.setTimeout should be function and is.
28 PASS: typeof window.clearTimeout should be object and is. 28 PASS: typeof window.clearTimeout should be function and is.
29 PASS: typeof window.setInterval should be object and is. 29 PASS: typeof window.setInterval should be function and is.
30 PASS: typeof window.clearInterval should be object and is. 30 PASS: typeof window.clearInterval should be function and is.
31 PASS: typeof window.addEventListener should be object and is. 31 PASS: typeof window.addEventListener should be function and is.
32 PASS: typeof window.removeEventListener should be object and is. 32 PASS: typeof window.removeEventListener should be function and is.
33 PASS: typeof window.captureEvents should be object and is. 33 PASS: typeof window.captureEvents should be function and is.
34 PASS: typeof window.releaseEvents should be object and is. 34 PASS: typeof window.releaseEvents should be function and is.
35 FAIL: typeof window.eval should be object but instead is function 35 PASS: typeof window.eval should be function and is.
36 FAIL: typeof window.parseInt should be object but instead is function 36 PASS: typeof window.parseInt should be function and is.
37 FAIL: typeof window.parseFloat should be object but instead is function 37 PASS: typeof window.parseFloat should be function and is.
38 FAIL: typeof window.isNaN should be object but instead is function 38 PASS: typeof window.isNaN should be function and is.
39 FAIL: typeof window.isFinite should be object but instead is function 39 PASS: typeof window.isFinite should be function and is.
40 FAIL: typeof window.escape should be object but instead is function 40 PASS: typeof window.escape should be function and is.
41 FAIL: typeof window.unescape should be object but instead is function 41 PASS: typeof window.unescape should be function and is.
42 FAIL: typeof window.decodeURI should be object but instead is function 42 PASS: typeof window.decodeURI should be function and is.
43 FAIL: typeof window.decodeURIComponent should be object but instead is function 43 PASS: typeof window.decodeURIComponent should be function and is.
44 FAIL: typeof window.encodeURI should be object but instead is function 44 PASS: typeof window.encodeURI should be function and is.
45 FAIL: typeof window.encodeURIComponent should be object but instead is function 45 PASS: typeof window.encodeURIComponent should be function and is.
46 PASS: typeof window.toString should be object and is. 46 PASS: typeof window.toString should be function and is.
47 PASS: typeof window.toLocaleString should be object and is. 47 PASS: typeof window.toLocaleString should be function and is.
48 PASS: typeof window.valueOf should be object and is. 48 PASS: typeof window.valueOf should be function and is.
49 PASS: typeof window.hasOwnProperty should be object and is. 49 PASS: typeof window.hasOwnProperty should be function and is.
50 PASS: typeof window.propertyIsEnumerable should be object and is. 50 PASS: typeof window.propertyIsEnumerable should be function and is.
51 PASS: typeof window.isPrototypeOf should be object and is. 51 PASS: typeof window.isPrototypeOf should be function and is.
52 PASS: typeof window.__defineGetter__ should be object and is. 52 PASS: typeof window.__defineGetter__ should be function and is.
53 PASS: typeof window.__defineSetter__ should be object and is. 53 PASS: typeof window.__defineSetter__ should be function and is.
54 PASS: typeof window.__lookupGetter__ should be object and is. 54 PASS: typeof window.__lookupGetter__ should be function and is.
55 PASS: typeof window.__lookupSetter__ should be object and is. 55 PASS: typeof window.__lookupSetter__ should be function and is.
56 FAIL: typeof window.myFunction should be object but instead is function 56 PASS: typeof window.myFunction should be function and is.
57 PASS: typeof window.myPrototypeFunction should be object and is. 57 PASS: typeof window.myPrototypeFunction should be function and is.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698