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

Unified Diff: LayoutTests/fast/dom/non-numeric-values-numeric-parameters-expected.txt

Issue 886463010: Make arguments to window.{move,resize}{To,By} non-optional (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 5 years, 6 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/non-numeric-values-numeric-parameters-expected.txt
diff --git a/LayoutTests/fast/dom/non-numeric-values-numeric-parameters-expected.txt b/LayoutTests/fast/dom/non-numeric-values-numeric-parameters-expected.txt
index 05a3acf308dced87a2d19de812ceb2bade675af6..f45b51f99604d5e75414b05e82010483e807f113 100644
--- a/LayoutTests/fast/dom/non-numeric-values-numeric-parameters-expected.txt
+++ b/LayoutTests/fast/dom/non-numeric-values-numeric-parameters-expected.txt
@@ -70,13 +70,13 @@ PASS nonNumericPolicy('window.scrollTo(0, x)') is 'any type allowed (but not omi
PASS nonNumericPolicy('window.scroll(x, 0)') is 'any type allowed'
PASS nonNumericPolicy('window.scroll(0, x)') is 'any type allowed (but not omitted)'
PASS nonNumericPolicy('window.moveBy(x, 0)') is 'any type allowed'
-PASS nonNumericPolicy('window.moveBy(0, x)') is 'any type allowed'
+PASS nonNumericPolicy('window.moveBy(0, x)') is 'any type allowed (but not omitted)'
PASS nonNumericPolicy('window.moveTo(x, 0)') is 'any type allowed'
-PASS nonNumericPolicy('window.moveTo(0, x)') is 'any type allowed'
+PASS nonNumericPolicy('window.moveTo(0, x)') is 'any type allowed (but not omitted)'
PASS nonNumericPolicy('window.resizeBy(x, 0)') is 'any type allowed'
-PASS nonNumericPolicy('window.resizeBy(0, x)') is 'any type allowed'
+PASS nonNumericPolicy('window.resizeBy(0, x)') is 'any type allowed (but not omitted)'
PASS nonNumericPolicy('window.resizeTo(x, 0)') is 'any type allowed'
-PASS nonNumericPolicy('window.resizeTo(0, x)') is 'any type allowed'
+PASS nonNumericPolicy('window.resizeTo(0, x)') is 'any type allowed (but not omitted)'
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698