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

Unified Diff: LayoutTests/fast/events/touch/touch-fractional-coordinates.html

Issue 1159793005: Deprecated webkit-prefixed properties of the Touch interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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/events/touch/touch-fractional-coordinates.html
diff --git a/LayoutTests/fast/events/touch/touch-fractional-coordinates.html b/LayoutTests/fast/events/touch/touch-fractional-coordinates.html
index 32d4d952955f4ca8b5bdf6b48254ff2ee595d99e..c868c01f0cf701e07aae474fded6501193bdb7de 100644
--- a/LayoutTests/fast/events/touch/touch-fractional-coordinates.html
+++ b/LayoutTests/fast/events/touch/touch-fractional-coordinates.html
@@ -69,7 +69,7 @@ iframe {
debug('This test requires eventSender.');
return;
}
-
+
debug('Testing simple fractional touch');
eventSender.addTouchPoint(30.33, 4.5, 5.2, 6.3);
eventSender.touchStart();
@@ -80,8 +80,8 @@ iframe {
shouldBeCloseTo('lastEvent.changedTouches[0].clientY', 4.5, floatPrecision);
shouldBeCloseTo('lastEvent.changedTouches[0].pageX', 30.33 + scrollX, floatPrecision);
shouldBeCloseTo('lastEvent.changedTouches[0].pageY', 4.5 + scrollY, floatPrecision);
- shouldBeCloseTo('lastEvent.changedTouches[0].webkitRadiusX', 5.2, floatPrecision);
- shouldBeCloseTo('lastEvent.changedTouches[0].webkitRadiusY', 6.3, floatPrecision);
+ shouldBeCloseTo('lastEvent.changedTouches[0].radiusX', 5.2, floatPrecision);
+ shouldBeCloseTo('lastEvent.changedTouches[0].radiusY', 6.3, floatPrecision);
}
eventSender.releaseTouchPoint(0);
eventSender.touchEnd();

Powered by Google App Engine
This is Rietveld 408576698