blob: 801eb4d4b9d40c153bc94d7b87ea8b9dcf5a2b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!doctype html>
<html>
<head>
<title>testcase for autocomplete testing</title>
<link rel="stylesheet" type="text/css" href="resources_inpage1.css"/>
<style type="text/css">
div {
font-size: 4em;
}
div > span {
text-decoration: underline;
}
div + button {
border: 2px dotted red;
}
</style>
</head>
<body>
<div>parent <span>child</span></div><button>sibling</button>
</body>
</html>
|