Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>CSS Flexbox: Crash caused by negative width in flex box</title>
<link rel="author" title="Christian Biesinger" href="mailto:cbiesinger@chromium.org">
<meta name="assert" content="Check that crash doesn't happen in flex box with negative margin.">
<style>
div {
display: flex;
}
.inner {
margin-left: -4em;
}
</style>
<div>
<div>
<div class="inner">PASS if we don't assert</div>
</div>
</div>