зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
372 B
HTML
24 строки
372 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>simple testcase</title>
|
|
<link rel="stylesheet" type="text/css" media="scren" href="simple.css.gz"/>
|
|
<style type="text/css">
|
|
body {
|
|
background: white;
|
|
}
|
|
|
|
div {
|
|
font-size: 4em;
|
|
}
|
|
|
|
div > span {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>simple <span>testcase</span></div>
|
|
</body>
|
|
</html>
|