зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
419 B
HTML
24 строки
419 B
HTML
<!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>
|