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="Test checks that the resize element inherits parent element">
<style>
#parent {
border: 2px solid blue;
height: 150px;
overflow: auto;
resize: both;
width: 150px;
}
#child {
border: 2px solid green;
height: 75px;
overflow: auto;
resize: inherit;
width: 75px;
}
</style>
<body>
<p>Test passes if both the height and width of the <strong>green</strong> border square inside blue square can be adjusted(for instance by dragging the bottom-right corner).</p>