mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
This still needs a lot of work, but it covers the basic cases and improves wikipedia while passing all existing tests. Tweak reftest to deal with linux/travis black background.
28 lines
648 B
HTML
28 lines
648 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: 'ahem';
|
|
src: url(fonts/ahem/ahem.ttf);
|
|
}
|
|
body {
|
|
font-family: 'ahem';
|
|
font-size: 100px;
|
|
margin: 32px;
|
|
}
|
|
.ib {
|
|
display: inline-block;
|
|
}
|
|
.yellow {
|
|
color: #ff0;
|
|
}
|
|
.grey {
|
|
color: #eee;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="grey">X<span class="yellow ib">X</span></div>
|
|
</body>
|
|
</html>
|