mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
347 B
HTML
23 lines
347 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>testcase for autocomplete testing</title>
|
|
<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>
|