Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / touch / resources / frame-touchevent-forwarder.html
blob73a169250bfa029cd38f8b48a8fd44a98bdacec2
1 <!DOCTYPE html>
2 <style>
3 html {
4 border: 1px solid blue;
5 box-sizing: border-box;
6 width: 100%;
7 height: 100%;
9 </style>
10 <script>
11 document.addEventListener('touchstart', function(e) {
12 parent.onTouchStart(e);
13 });
14 </script>
15 Iframe