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="This test verifies that fieldset's width is the same as the img's width, transferred from the img's height and aspect-ratio.">
<style>
fieldset {
margin: 0;
padding: 10px;
border: 0;
height: 80px;
width: fit-content;
/* create a red dot that should be covered by the <img> */
background: radial-gradient(red, red 50%, green 50%, green 100%);
}
img {
height: 100%;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>