mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
2525944e34
I replaced the values with -moz-inline-box in the crashtests rather than removing them. I think they are still valuable after replacing the display value. Differential Revision: https://phabricator.services.mozilla.com/D42551 --HG-- extra : moz-landing-system : lando
19 lines
255 B
HTML
19 lines
255 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<style>
|
|
span { display:block; outline: 10px solid yellow; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>
|
|
<div style="display: -moz-inline-box">
|
|
<span>M</span>
|
|
<span>N</span>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|