Update web-platform-tests to revision 66f38302334f162d363afcf4a1792d895072f3ef

This commit is contained in:
WPT Sync Bot 2018-06-13 21:09:34 -04:00
parent 36f5b69224
commit b198cd722a
622 changed files with 3374 additions and 2001 deletions

View file

@ -0,0 +1,9 @@
suggested_reviewers:
- kojiishi
- plinss
- mrego
- cbiesinger
- chenxix
- atanassov
- fantasai
- tabatkins

View file

@ -1,8 +0,0 @@
@kojiishi
@plinss
@mrego
@cbiesinger
@chenxix
@atanassov
@fantasai
@tabatkins

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<title>Flex item with table with infinite max intrinsic inline size</title>
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#algo-main-item" title="3. Determine the flex base size and hypothetical main size of each item:">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<p>Test passes if there is a filled green square.</p>
<div style="display:flex; width:100px; height:100px; align-items:flex-start; background:green;">
<div style="flex-grow:1; flex-shrink:0;">
<table style="height:50px; background:green;" cellpadding="0" cellspacing="0">
<tr>
<td style="width:100%; background:green;">&nbsp;</td>
<td style="background:green;">&nbsp;</td>
</tr>
</table>
</div>
</div>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<title>Table flex item with infinite max intrinsic inline size</title>
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#algo-main-item" title="3. Determine the flex base size and hypothetical main size of each item:">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<p>Test passes if there is a filled green square.</p>
<div style="display:flex; width:100px; height:100px; align-items:flex-start; background:green;">
<table style="flex-grow:1; flex-shrink:0; height:50px; background:green;" cellpadding="0" cellspacing="0">
<tr>
<td style="width:100%; background:green;">&nbsp;</td>
<td style="background:green;">&nbsp;</td>
</tr>
</table>
</div>