Files
servo/tests/wpt/css-tests/css21_dev/html4/containing-block-027.htm

34 lines
1.2 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Content is not confined by containing blocks</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2012-03-10 -->
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#containing-block">
<link rel="match" href="reference/containing-block-027-ref.htm">
<meta name="flags" content="may">
<meta name="assert" content="Content may overflow containing blocks.">
<style type="text/css">
div
{
background: blue;
height: 1in;
padding-top: 5px;
width: 1in;
}
div div
{
background: orange;
height: 0.5in;
width: 2in;
}
</style>
</head>
<body>
<p>Test passes if the orange rectangle is within or overflows to the right and outside of the blue square.</p>
<div>
<div></div>
</div>
</body>
</html>