mirror of
https://github.com/servo/servo.git
synced 2025-06-17 12:54:28 +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.
15 lines
205 B
HTML
15 lines
205 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
span {
|
|
margin-left: 128px;
|
|
margin-right: 128px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span><img src=rust.png><img src=rust.png><img src=rust.png></span>
|
|
</body>
|
|
</html>
|
|
|