fune/devtools/client/responsive/test/browser/touch_event_bubbles.html
2020-01-13 22:45:59 +00:00

19 lines
331 B
HTML

<!DOCTYPE html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Simulated touch events should bubble</title>
<style>
span {
background-color: red;
height: 100px;
width: 100px;
}
</style>
<div id="outer">
<div id="inner">
<span>Hello</span>
</div>
</div>