Update web-platform-tests to revision 2b7dace05fc1869398ee24f84fda4c0e4c0455ae

This commit is contained in:
WPT Sync Bot 2018-08-31 21:37:12 +00:00 committed by Tom Servo
parent b23125d590
commit 6c901de216
844 changed files with 19802 additions and 3093 deletions

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<title>Combining column-span and inline-block on the same element</title>
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/#column-span" title="6.1. column-span">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="column-span:all only applies to block-level elements, i.e. not inline-blocks, for instance">
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="columns:4; column-gap:0; width:400px;">
<div style="column-span:all; display:inline-block;">
<div style="float:left; width:100px; height:50px; background:green;"></div>
<div style="float:left; width:100px; height:50px; background:green;"></div>
</div>
</div>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<title>Intrinsic size computation with specified padding</title>
<link rel="author" title="Googld Inc." href="https://www.google.com/">
<link rel="help" href="https://drafts.csswg.org/css-multicol/#pseudo-algorithm " title="3.4. Pseudo-algorithm">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="float:left; columns:2; height:40px; padding:30px; column-gap:0; background:green;">
<div style="width:20px;"></div>
</div>