mirror of
https://github.com/servo/servo.git
synced 2025-06-13 10:54: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.
18 lines
248 B
HTML
18 lines
248 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#first {
|
|
margin-left: 128px;
|
|
}
|
|
#last {
|
|
margin-right: 128px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span id=first><img src=rust.png></span><img src=rust.png><span id=last><img src=rust.png></span>
|
|
</body>
|
|
</html>
|
|
|
|
|