| Index: LayoutTests/fast/events/touch/script-tests/document-create-touch.js
|
| 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 70c49006849961939e83864fcc48f05192fe88df..bf2986e31c14f2d13a460a1eda645d96569bc410 100644
|
| --- a/LayoutTests/fast/events/touch/script-tests/document-create-touch.js
|
| +++ b/LayoutTests/fast/events/touch/script-tests/document-create-touch.js
|
| @@ -17,6 +17,9 @@ shouldBe("touch.pageX", "100");
|
| shouldBe("touch.pageY", "101");
|
| shouldBe("touch.screenX", "102");
|
| shouldBe("touch.screenY", "103");
|
| +shouldBe("touch.radiusX", "5");
|
| +shouldBe("touch.radiusY", "3");
|
| +shouldBe("touch.force", "10");
|
| shouldBe("touch.webkitRadiusX", "5");
|
| shouldBe("touch.webkitRadiusY", "3");
|
| shouldBe("touch.webkitRotationAngle", "10");
|
| @@ -30,6 +33,9 @@ shouldBe("emptyTouch.pageX", "0");
|
| shouldBe("emptyTouch.pageY", "0");
|
| shouldBe("emptyTouch.screenX", "0");
|
| shouldBe("emptyTouch.screenY", "0");
|
| +shouldBe("emptyTouch.radiusX", "0");
|
| +shouldBe("emptyTouch.radiusY", "0");
|
| +shouldBeNaN("emptyTouch.force");
|
| shouldBe("emptyTouch.webkitRadiusX", "0");
|
| shouldBe("emptyTouch.webkitRadiusY", "0");
|
| shouldBeNaN("emptyTouch.webkitRotationAngle");
|
| @@ -44,6 +50,9 @@ shouldBe("badParamsTouch.pageX", "0");
|
| shouldBe("badParamsTouch.pageY", "0");
|
| shouldBe("badParamsTouch.screenX", "0");
|
| shouldBe("badParamsTouch.screenY", "104");
|
| +shouldBe("badParamsTouch.radiusX", "0");
|
| +shouldBe("badParamsTouch.radiusY", "0");
|
| +shouldBeNaN("badParamsTouch.force");
|
| shouldBe("badParamsTouch.webkitRadiusX", "0");
|
| shouldBe("badParamsTouch.webkitRadiusY", "0");
|
| shouldBeNaN("badParamsTouch.webkitRotationAngle");
|
|
|