tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / dom / Window / window-resize-and-move-arguments-expected.txt
index 04b2e07..9f2189d 100755 (executable)
@@ -1,4 +1,4 @@
-This test makes sure that we don't allow calling the window moving and resizing methods with less than 2 arguments and that we do allow calling them with more.
+This test makes sure that calling the window moving and resizing methods with less than 2 arguments treats the missing arguments as 0.
 
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
 
@@ -10,7 +10,7 @@ Testing - resizeTo with 0 arguments
 PASS window.outerWidth is resetWidth
 PASS window.outerHeight is resetHeight
 Testing - resizeTo with 1 argument
-PASS window.outerWidth is resetWidth
+PASS window.outerWidth is width
 PASS window.outerHeight is resetHeight
 Testing - resizeTo with more than 2 arguments
 PASS window.outerWidth is width
@@ -22,7 +22,7 @@ Testing - resizeBy with 0 arguments
 PASS window.outerWidth is resetWidth
 PASS window.outerHeight is resetHeight
 Testing - resizeBy with 1 argument
-PASS window.outerWidth is resetWidth
+PASS window.outerWidth is resetWidth + x
 PASS window.outerHeight is resetHeight
 Testing - resizeBy with more than 2 arguments
 PASS window.outerWidth is resetWidth + x
@@ -34,7 +34,7 @@ Testing - moveTo with 0 arguments
 PASS window.screenX is resetX
 PASS window.screenY is resetY
 Testing - moveTo with 1 argument
-PASS window.screenX is resetX
+PASS window.screenX is resetX + x
 PASS window.screenY is resetY
 Testing - moveTo with more than 2 arguments
 PASS window.screenX is x + screen.availLeft
@@ -46,7 +46,7 @@ Testing - moveBy with 0 arguments
 PASS window.screenX is resetX
 PASS window.screenY is resetY
 Testing - moveBy with 1 argument
-PASS window.screenX is resetX
+PASS window.screenX is resetX + x
 PASS window.screenY is resetY
 Testing - moveBy with more than 2 arguments
 PASS window.screenX is resetX + x