mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 66f38302334f162d363afcf4a1792d895072f3ef
This commit is contained in:
parent
36f5b69224
commit
b198cd722a
622 changed files with 3374 additions and 2001 deletions
9
tests/wpt/web-platform-tests/css/css-flexbox/META.yml
Normal file
9
tests/wpt/web-platform-tests/css/css-flexbox/META.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
suggested_reviewers:
|
||||
- kojiishi
|
||||
- plinss
|
||||
- mrego
|
||||
- cbiesinger
|
||||
- chenxix
|
||||
- atanassov
|
||||
- fantasai
|
||||
- tabatkins
|
|
@ -1,8 +0,0 @@
|
|||
@kojiishi
|
||||
@plinss
|
||||
@mrego
|
||||
@cbiesinger
|
||||
@chenxix
|
||||
@atanassov
|
||||
@fantasai
|
||||
@tabatkins
|
|
@ -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;"> </td>
|
||||
<td style="background:green;"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
|
@ -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;"> </td>
|
||||
<td style="background:green;"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue