chromium/third_party/blink/web_tests/fast/events/touch/resources/multi-touch-inside-nested-iframes2.html

<html>
<html>
<style>
iframe {
  width: 100px;
  height: 100px;
  margin: 0;
  padding: 0;
  border: 1px solid black;
  position:absolute;
  left:50px;
  top:50px;
  background: blue;
}
</style>
<head>
<script type='text/javascript'>
document.addEventListener("touchstart", function() { parent.onTouch(event, document.title); }, false);
document.addEventListener("touchend", function() { parent.onTouch(event, document.title); }, false);
document.addEventListener("touchmove", function() { parent.onTouch(event, document.title); }, false);
</script>
</head>
<body onload="document.title=parent.getTitle()">
<iframe id="iframe2" src="multi-touch-inside-nested-iframes3.html"></iframe>
</body>
</html>