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

Unified Diff: LayoutTests/fast/events/touch/resources/frame-touchevent-forwarder.html

Issue 298133003: Expose fractional TouchEvent coordinates (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Make layout test output stable across platforms Created 6 years, 6 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/resources/frame-touchevent-forwarder.html
diff --git a/LayoutTests/fast/events/touch/resources/frame-touchevent-forwarder.html b/LayoutTests/fast/events/touch/resources/frame-touchevent-forwarder.html
new file mode 100644
index 0000000000000000000000000000000000000000..73a169250bfa029cd38f8b48a8fd44a98bdacec2
--- /dev/null
+++ b/LayoutTests/fast/events/touch/resources/frame-touchevent-forwarder.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<style>
+html {
+ border: 1px solid blue;
+ box-sizing: border-box;
+ width: 100%;
+ height: 100%;
+}
+</style>
+<script>
+ document.addEventListener('touchstart', function(e) {
+ parent.onTouchStart(e);
+ });
+</script>
+Iframe

Powered by Google App Engine
This is Rietveld 408576698