gecko-dev/layout/xul/crashtests/376137-1.html
Mats Palmgren 2525944e34 Bug 1574994 part 1 - Remove/replace display:-moz-inline-grid and -moz-inline-stack in tests. r=emilio
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
2019-08-19 21:19:04 +00:00

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>