Title: [99012] trunk/LayoutTests
Revision
99012
Author
[email protected]
Date
2011-11-01 16:53:19 -0700 (Tue, 01 Nov 2011)

Log Message

Rebaseline getter-on-window-object2.html after r99005.

* platform/chromium/fast/dom/getter-on-window-object2-expected.txt: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (99011 => 99012)


--- trunk/LayoutTests/ChangeLog	2011-11-01 23:33:04 UTC (rev 99011)
+++ trunk/LayoutTests/ChangeLog	2011-11-01 23:53:19 UTC (rev 99012)
@@ -1,3 +1,9 @@
+2011-11-01  John Gregg  <[email protected]>
+
+        Rebaseline getter-on-window-object2.html after r99005.
+
+        * platform/chromium/fast/dom/getter-on-window-object2-expected.txt: Added.
+
 2011-11-01  Filip Pizlo  <[email protected]>
 
         DFG inlining breaks function.arguments

Added: trunk/LayoutTests/platform/chromium/fast/dom/getter-on-window-object2-expected.txt (0 => 99012)


--- trunk/LayoutTests/platform/chromium/fast/dom/getter-on-window-object2-expected.txt	                        (rev 0)
+++ trunk/LayoutTests/platform/chromium/fast/dom/getter-on-window-object2-expected.txt	2011-11-01 23:53:19 UTC (rev 99012)
@@ -0,0 +1,25 @@
+This page tests what happens when a getter / setter on the window object conflicts with another property or declared variable
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS window.x is 1
+PASS typeof window.__lookupGetter__('x') is 'undefined'
+PASS typeof Object.getOwnPropertyDescriptor(window, 'x').get is 'undefined'
+
+PASS window.x is 2
+PASS typeof window.__lookupGetter__('x') is 'undefined'
+PASS typeof Object.getOwnPropertyDescriptor(window, 'x').get is 'undefined'
+
+PASS window.y is 'window.y __getter__'
+PASS typeof window.__lookupGetter__('y') is 'function'
+PASS typeof Object.getOwnPropertyDescriptor(window, 'y').get is 'function'
+
+PASS window.y is 'window.y __getter__'
+PASS typeof window.__lookupGetter__('y') is 'function'
+PASS typeof Object.getOwnPropertyDescriptor(window, 'y').get is 'function'
+
+PASS window.z is undefined.
+PASS typeof window.__lookupSetter__('z') is 'function'
+PASS typeof Object.getOwnPropertyDescriptor(window, 'z').set is 'function'
+
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to