summaryrefslogtreecommitdiffstats
path: root/devtools/client/responsive/test/browser/touch_event_bubbles.html
blob: 9e8decbc54aa541875fc9acfd0be62a4664cb734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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>