Update CSS tests to revision 0698c2aa9ead844b6d7d10eafb096cb1118e13ef

This commit is contained in:
Ms2ger
2015-12-09 01:48:05 -05:00
parent 9aa1b1e408
commit 35c74aecc2
11290 changed files with 92400 additions and 49214 deletions

View File

@@ -4,7 +4,7 @@
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>CSS Test: Margin collapsing - inline-block child does not collapse margins with parent</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="reviewer" title="Arron Eicholz" href="arronei(at)gmail.com" /> <!-- 2013-07-30 -->
<link rel="help" href="http://www.w3.org/TR/CSS21/box.html#collapsing-margins" />
@@ -12,7 +12,7 @@
<meta name="flags" content="ahem image" />
<meta name="assert" content="An element with its display set to 'inline-block' does not collapse its margins with its children." />
<style type="text/css"><![CDATA[
div
{
@@ -41,24 +41,24 @@
}
div#wrapper div {background-color: green;}
div#inline-block, div#block-child-of-inline-block {height: 0.5em;}
div#following-sibling-after-inline-block {height: 1em;}
]]></style>
</head>
<body>
<p>Test passes if there is <strong>no red</strong>.</p>
<div id="wrapper">
<div id="inline-block">
<div id="block-child-of-inline-block"></div>
</div>
<div id="following-sibling-after-inline-block"></div>
</div>
</body>
</html>