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="An absolutely positioned replaced element with percentage intrinsic height resolves based on the containing block when the replaced element is absolutely positioned." />
<style type="text/css">
#div1
{
position: relative;
height: 2in;
}
div div
{
background: orange;
height: 1in;
left: 200px;
position: absolute;
top: 0;
width: 200px;
}
svg
{
position: absolute;
width: auto;
}
</style>
</head>
<body>
<p>Test passes if the blue and orange rectangles have the <strong>same height</strong>.</p>