mirror of
https://github.com/servo/servo
synced 2026-05-09 00:22:16 +02: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.
16 lines
205 B
HTML
16 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>
|
|
|