Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / touch / resources / multi-touch-inside-nested-iframes2.html
blob7c91d8f934e6a423c09234eebee1234efdb28e46
1 <html>
2 <html>
3 <style>
4 iframe {
5 width: 100px;
6 height: 100px;
7 margin: 0;
8 padding: 0;
9 border: 1px solid black;
10 position:absolute;
11 left:50px;
12 top:50px;
13 background: blue;
15 </style>
16 <head>
17 <script type='text/javascript'>
18 document.addEventListener("touchstart", function() { parent.onTouch(event, document.title); }, false);
19 document.addEventListener("touchend", function() { parent.onTouch(event, document.title); }, false);
20 document.addEventListener("touchmove", function() { parent.onTouch(event, document.title); }, false);
21 </script>
22 </head>
23 <body onload="document.title=parent.getTitle()">
24 <iframe id="iframe2" src="multi-touch-inside-nested-iframes3.html"></iframe>
25 </body>
26 </html>