mirror of
https://github.com/servo/servo.git
synced 2025-06-16 12:24:29 +00:00
Improves the Google SERPs. We mark `html/rendering/replaced-elements/images/space.html` as failing. This test tested whether `<img hspace>` and inline margins do the same thing. Since this was trivially the case before (since we implemented neither) and now is not, this test now fails.
14 lines
212 B
HTML
14 lines
212 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="css/ahem.css">
|
|
<style>
|
|
span {
|
|
margin-left: 100px;
|
|
margin-right: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>x<span>x</span>x</body>
|
|
</html>
|
|
|