19 lines
331 B
HTML
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>
|