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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 html {
4 border: 1px solid blue;
5 box-sizing: border-box;
6 width: 100%;
7 height: 100%;
8 }
9 </style>
10 <script>
11 document.addEventListener('touchstart', function(e) {
12 parent.onTouchStart(e);
13 });
14 </script>
15 Iframe
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698