You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name="assert" content="The 'flex-basis' property set 'auto', the actual width of tested element same as the value which specified by width property.">
<style>
#container {
background-color: red;
display: flex;
height: 100px;
width: 100px;
}
#container div{
background-color: green;
height: 100px;
}
#ref {
width: 50px;
}
#test {
flex-basis: auto;
width: 50px;
}
</style>
<body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>