From ba8aed56efd74537b361491ed9dd0b236571444d Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Sun, 27 Feb 2011 13:57:33 +0000 Subject: [PATCH] Since r11544, the event xy property is the average of all touch pixel locations. This test should have been updated with that change. git-svn-id: http://svn.openlayers.org/trunk/openlayers@11560 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/Events.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Events.html b/tests/Events.html index f487aeca85..62b7ed3e61 100644 --- a/tests/Events.html +++ b/tests/Events.html @@ -318,8 +318,8 @@ touches: [{clientX: 1, clientY: 1}, {clientX: 2, clientY: 2}] }; events.handleBrowserEvent(evt); - t.eq(evt.clientX, 1, "evt.clientX value is correct"); - t.eq(evt.clientY, 1, "evt.clientY value is correct"); + t.eq(evt.clientX, 1.5, "evt.clientX value is correct"); + t.eq(evt.clientY, 1.5, "evt.clientY value is correct"); } function test_Events_destroy (t) {