Update web-platform-tests to revision 04bc9c5667911cce7361ee33244dfc8d7ed61212

This commit is contained in:
WPT Sync Bot 2018-09-03 21:27:58 -04:00
parent 156b1cc891
commit 0d3d7c36ab
51 changed files with 843 additions and 298 deletions

View file

@ -4,8 +4,9 @@
<title>CSS Multi-column Layout Test: column-count and column-width (basic)</title>
<link rel="author" title="Opera Software ASA" href="http://www.opera.com/" />
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2013-08-23 -->
<link rel="help" href="http://www.w3.org/TR/css3-multicol/#cc" title="3.2 'column-count'" />
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/#cc" title="3.2 'column-count'" />
<link rel="match" href="multicol-count-002-ref.xht" />
<meta name="asset" content="Test that column-count acts as a max when combined with column-width."/>
<meta name="flags" content="ahem" />
<style type="text/css"><![CDATA[
html {background-color: white;}
@ -22,10 +23,9 @@
{
background-color: yellow;
color: black;
column-count: 4;
column-gap: 0;
column-width: 5em;
column-width: 4em; /* would create 5 columns if column-count was not acting as a max */
}
]]></style>
</head>