summaryrefslogtreecommitdiffstats
path: root/LayoutTests
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2010-10-19 05:49:14 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-10-19 05:49:14 -0700
commit88c013526c4a3dadc408824197843bf978155df3 (patch)
treea4b99b902d1583c2365c7b88e33368858a4abbf4 /LayoutTests
parent554fdab412022e6637145742e84c6316e1f02aac (diff)
parentae2f706e781550da00a8440e44f20bbb7bd24c30 (diff)
downloadexternal_webkit-88c013526c4a3dadc408824197843bf978155df3.zip
external_webkit-88c013526c4a3dadc408824197843bf978155df3.tar.gz
external_webkit-88c013526c4a3dadc408824197843bf978155df3.tar.bz2
Merge "Fix Webkit review comments for document.createTouch"
Diffstat (limited to 'LayoutTests')
-rw-r--r--LayoutTests/fast/events/touch/document-create-touch-expected.txt7
-rw-r--r--LayoutTests/fast/events/touch/script-tests/document-create-touch.js10
2 files changed, 17 insertions, 0 deletions
diff --git a/LayoutTests/fast/events/touch/document-create-touch-expected.txt b/LayoutTests/fast/events/touch/document-create-touch-expected.txt
index c1c647f..2bf33cb 100644
--- a/LayoutTests/fast/events/touch/document-create-touch-expected.txt
+++ b/LayoutTests/fast/events/touch/document-create-touch-expected.txt
@@ -18,6 +18,13 @@ PASS emptyTouch.pageX is 0
PASS emptyTouch.pageY is 0
PASS emptyTouch.screenX is 0
PASS emptyTouch.screenY is 0
+PASS badParamsTouch is non-null.
+PASS badParamsTouch.target is null
+PASS badParamsTouch.identifier is 0
+PASS badParamsTouch.pageX is 0
+PASS badParamsTouch.pageY is 0
+PASS badParamsTouch.screenX is 0
+PASS badParamsTouch.screenY is 104
PASS successfullyParsed is true
TEST COMPLETE
diff --git a/LayoutTests/fast/events/touch/script-tests/document-create-touch.js b/LayoutTests/fast/events/touch/script-tests/document-create-touch.js
index dd383ac..c51c7e3 100644
--- a/LayoutTests/fast/events/touch/script-tests/document-create-touch.js
+++ b/LayoutTests/fast/events/touch/script-tests/document-create-touch.js
@@ -27,5 +27,15 @@ shouldBe("emptyTouch.pageY", "0");
shouldBe("emptyTouch.screenX", "0");
shouldBe("emptyTouch.screenY", "0");
+// Try invoking with incorrect parameter types.
+var badParamsTouch = document.createTouch(function(x) { return x; }, 12, 'a', 'b', 'c', function(x) { return x; }, 104);
+shouldBeNonNull("badParamsTouch");
+shouldBeNull("badParamsTouch.target");
+shouldBe("badParamsTouch.identifier", "0");
+shouldBe("badParamsTouch.pageX", "0");
+shouldBe("badParamsTouch.pageY", "0");
+shouldBe("badParamsTouch.screenX", "0");
+shouldBe("badParamsTouch.screenY", "104");
+
successfullyParsed = true;
isSuccessfullyParsed();