mirror of
https://github.com/servo/servo.git
synced 2025-06-12 02:14:41 +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.
31 lines
719 B
HTML
31 lines
719 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.yellow {
|
|
background-color: #ff0;
|
|
}
|
|
.grey {
|
|
background-color: #eee;
|
|
}
|
|
.d1 {
|
|
position: absolute;
|
|
left: 32px;
|
|
top: 32px;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
.d2 {
|
|
position: absolute;
|
|
left: 132px;
|
|
top: 32px;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="d1 grey"></div>
|
|
<div class="d2 yellow"></div>
|
|
</body>
|
|
</html>
|