Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/negative-flex-margins-crash.html - WPT Dashboard Interop Dashboard
<!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>