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

Unified Diff: LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.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/inspector-protocol/input/emulateTouchFromMouseEvent.html
diff --git a/LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.html b/LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.html
index 449282fff5eff017f31a14b9bf2f93526af66ec5..fecc299b7434155081a00a66301e0146ef00d579 100644
--- a/LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.html
+++ b/LayoutTests/inspector-protocol/input/emulateTouchFromMouseEvent.html
@@ -21,10 +21,10 @@ function logEvent(event)
log("id: " + i);
log("pageX: " + touch.pageX);
log("pageY: " + touch.pageY);
- log("webkitRadiusX: " + touch.webkitRadiusX);
- log("webkitRadiusY: " + touch.webkitRadiusY);
- log("webkitRotationAngle: " + touch.webkitRotationAngle);
- log("webkitForce: " + touch.webkitForce);
+ log("radiusX: " + touch.radiusX);
+ log("radiusY: " + touch.radiusY);
+ log("rotationAngle: " + touch.rotationAngle);
+ log("force: " + touch.force);
}
evaluateInFrontend("onEvent();");
}

Powered by Google App Engine
This is Rietveld 408576698