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

Unified 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, 4 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/dom/Window/window-function-frame-getter-precedence-expected.txt
diff --git a/LayoutTests/fast/dom/Window/window-function-frame-getter-precedence-expected.txt b/LayoutTests/fast/dom/Window/window-function-frame-getter-precedence-expected.txt
index a2d06a4e296b92f2c035fa3e21bbe4d269ed9933..51f6ac228134d04ba8e28425b1352bcd62801a91 100644
--- a/LayoutTests/fast/dom/Window/window-function-frame-getter-precedence-expected.txt
+++ b/LayoutTests/fast/dom/Window/window-function-frame-getter-precedence-expected.txt
@@ -1,57 +1,57 @@
-This tests that a frame with a the same name as function on the window object, has precedence in the lookup.
+This tests that functions of the window object and it's prototype have precedence in lookup over frames with name's of the same name.
-PASS: typeof window.getSelection should be object and is.
-PASS: typeof window.focus should be object and is.
-PASS: typeof window.blur should be object and is.
-PASS: typeof window.close should be object and is.
-PASS: typeof window.print should be object and is.
-PASS: typeof window.stop should be object and is.
-PASS: typeof window.alert should be object and is.
-PASS: typeof window.confirm should be object and is.
-PASS: typeof window.prompt should be object and is.
-PASS: typeof window.find should be object and is.
-PASS: typeof window.scrollBy should be object and is.
-PASS: typeof window.scrollTo should be object and is.
-PASS: typeof window.scroll should be object and is.
-PASS: typeof window.moveBy should be object and is.
-PASS: typeof window.moveTo should be object and is.
-PASS: typeof window.resizeBy should be object and is.
-PASS: typeof window.resizeTo should be object and is.
-PASS: typeof window.getComputedStyle should be object and is.
-PASS: typeof window.getMatchedCSSRules should be object and is.
-PASS: typeof window.openDatabase should be object and is.
-PASS: typeof window.postMessage should be object and is.
-PASS: typeof window.atob should be object and is.
-PASS: typeof window.btoa should be object and is.
-PASS: typeof window.open should be object and is.
-PASS: typeof window.setTimeout should be object and is.
-PASS: typeof window.clearTimeout should be object and is.
-PASS: typeof window.setInterval should be object and is.
-PASS: typeof window.clearInterval should be object and is.
-PASS: typeof window.addEventListener should be object and is.
-PASS: typeof window.removeEventListener should be object and is.
-PASS: typeof window.captureEvents should be object and is.
-PASS: typeof window.releaseEvents should be object and is.
-FAIL: typeof window.eval should be object but instead is function
-FAIL: typeof window.parseInt should be object but instead is function
-FAIL: typeof window.parseFloat should be object but instead is function
-FAIL: typeof window.isNaN should be object but instead is function
-FAIL: typeof window.isFinite should be object but instead is function
-FAIL: typeof window.escape should be object but instead is function
-FAIL: typeof window.unescape should be object but instead is function
-FAIL: typeof window.decodeURI should be object but instead is function
-FAIL: typeof window.decodeURIComponent should be object but instead is function
-FAIL: typeof window.encodeURI should be object but instead is function
-FAIL: typeof window.encodeURIComponent should be object but instead is function
-PASS: typeof window.toString should be object and is.
-PASS: typeof window.toLocaleString should be object and is.
-PASS: typeof window.valueOf should be object and is.
-PASS: typeof window.hasOwnProperty should be object and is.
-PASS: typeof window.propertyIsEnumerable should be object and is.
-PASS: typeof window.isPrototypeOf should be object and is.
-PASS: typeof window.__defineGetter__ should be object and is.
-PASS: typeof window.__defineSetter__ should be object and is.
-PASS: typeof window.__lookupGetter__ should be object and is.
-PASS: typeof window.__lookupSetter__ should be object and is.
-FAIL: typeof window.myFunction should be object but instead is function
-PASS: typeof window.myPrototypeFunction should be object and is.
+PASS: typeof window.getSelection should be function and is.
+PASS: typeof window.focus should be function and is.
+PASS: typeof window.blur should be function and is.
+PASS: typeof window.close should be function and is.
+PASS: typeof window.print should be function and is.
+PASS: typeof window.stop should be function and is.
+PASS: typeof window.alert should be function and is.
+PASS: typeof window.confirm should be function and is.
+PASS: typeof window.prompt should be function and is.
+PASS: typeof window.find should be function and is.
+PASS: typeof window.scrollBy should be function and is.
+PASS: typeof window.scrollTo should be function and is.
+PASS: typeof window.scroll should be function and is.
+PASS: typeof window.moveBy should be function and is.
+PASS: typeof window.moveTo should be function and is.
+PASS: typeof window.resizeBy should be function and is.
+PASS: typeof window.resizeTo should be function and is.
+PASS: typeof window.getComputedStyle should be function and is.
+PASS: typeof window.getMatchedCSSRules should be function and is.
+PASS: typeof window.openDatabase should be function and is.
+PASS: typeof window.postMessage should be function and is.
+PASS: typeof window.atob should be function and is.
+PASS: typeof window.btoa should be function and is.
+PASS: typeof window.open should be function and is.
+PASS: typeof window.setTimeout should be function and is.
+PASS: typeof window.clearTimeout should be function and is.
+PASS: typeof window.setInterval should be function and is.
+PASS: typeof window.clearInterval should be function and is.
+PASS: typeof window.addEventListener should be function and is.
+PASS: typeof window.removeEventListener should be function and is.
+PASS: typeof window.captureEvents should be function and is.
+PASS: typeof window.releaseEvents should be function and is.
+PASS: typeof window.eval should be function and is.
+PASS: typeof window.parseInt should be function and is.
+PASS: typeof window.parseFloat should be function and is.
+PASS: typeof window.isNaN should be function and is.
+PASS: typeof window.isFinite should be function and is.
+PASS: typeof window.escape should be function and is.
+PASS: typeof window.unescape should be function and is.
+PASS: typeof window.decodeURI should be function and is.
+PASS: typeof window.decodeURIComponent should be function and is.
+PASS: typeof window.encodeURI should be function and is.
+PASS: typeof window.encodeURIComponent should be function and is.
+PASS: typeof window.toString should be function and is.
+PASS: typeof window.toLocaleString should be function and is.
+PASS: typeof window.valueOf should be function and is.
+PASS: typeof window.hasOwnProperty should be function and is.
+PASS: typeof window.propertyIsEnumerable should be function and is.
+PASS: typeof window.isPrototypeOf should be function and is.
+PASS: typeof window.__defineGetter__ should be function and is.
+PASS: typeof window.__defineSetter__ should be function and is.
+PASS: typeof window.__lookupGetter__ should be function and is.
+PASS: typeof window.__lookupSetter__ should be function and is.
+PASS: typeof window.myFunction should be function and is.
+PASS: typeof window.myPrototypeFunction should be function and is.

Powered by Google App Engine
This is Rietveld 408576698