mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Update web-platform-tests to revision 332b7c4e711d75ead4c0dfbf7f6f0b683206756d
This commit is contained in:
parent
46611b012e
commit
b60afa18f5
389 changed files with 7767 additions and 2421 deletions
|
@ -0,0 +1,53 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Flexbox: min-height: auto with flex items containing percentage-sized children</title>
|
||||
<link rel="author" title="Google LLC" href="https://www.google.com/" />
|
||||
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#min-size-auto" />
|
||||
<link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
|
||||
<link rel="issue" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1003556" />
|
||||
|
||||
<style>
|
||||
.flex {
|
||||
display: flex;
|
||||
}
|
||||
.column {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.bigger-than-parent {
|
||||
height: 100%;
|
||||
min-height: 100px;
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
#reference-overlapped-green {
|
||||
position: absolute;
|
||||
background-color: green;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
||||
|
||||
<div id="reference-overlapped-green"></div>
|
||||
|
||||
<div id="outer" style="width: 100px; height: 300px;" class="flex">
|
||||
<div style="height: 100px; width: 100px; background: blue;" class="flex column">
|
||||
<div style="flex: 0 1 100%"></div>
|
||||
|
||||
<div style="flex: 1 0 30px;">
|
||||
<div class="bigger-than-parent">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
onload = function() {
|
||||
var outer = document.getElementById("outer");
|
||||
outer.offsetWidth;
|
||||
outer.style.height = "200px";
|
||||
};
|
||||
</script>
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Flexible Box Layout Module Level 1: flex-flow sets longhands</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#propdef-flex-flow">
|
||||
<meta name="assert" content="flex-flow supports the full grammar '<flex-direction> || <flex-wrap>'.">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/css/support/shorthand-testcommon.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
test_shorthand_value('flex-flow', 'nowrap column', {
|
||||
'flex-direction': 'column',
|
||||
'flex-wrap': 'nowrap'
|
||||
});
|
||||
|
||||
test_shorthand_value('flex-flow', 'wrap row-reverse', {
|
||||
'flex-direction': 'row-reverse',
|
||||
'flex-wrap': 'wrap'
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Flexible Box Layout Module Level 1: flex sets longhands</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#propdef-flex">
|
||||
<meta name="assert" content="flex supports the full grammar 'none | [ <‘flex-grow’> <‘flex-shrink’>? || <‘flex-basis’> ]'.">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/css/support/shorthand-testcommon.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
test_shorthand_value('flex', 'none', {
|
||||
'flex-grow': '0',
|
||||
'flex-shrink': '0',
|
||||
'flex-basis': 'auto'
|
||||
});
|
||||
|
||||
test_shorthand_value('flex', '1', {
|
||||
'flex-grow': '1',
|
||||
'flex-shrink': '1',
|
||||
'flex-basis': '0%'
|
||||
});
|
||||
|
||||
test_shorthand_value('flex', '2 3', {
|
||||
'flex-grow': '2',
|
||||
'flex-shrink': '3',
|
||||
'flex-basis': '0%'
|
||||
});
|
||||
|
||||
test_shorthand_value('flex', '4 5 6px', {
|
||||
'flex-grow': '4',
|
||||
'flex-shrink': '5',
|
||||
'flex-basis': '6px'
|
||||
});
|
||||
|
||||
test_shorthand_value('flex', '7% 8', {
|
||||
'flex-grow': '8',
|
||||
'flex-shrink': '1',
|
||||
'flex-basis': '7%'
|
||||
});
|
||||
|
||||
test_shorthand_value('flex', '8 auto', {
|
||||
'flex-grow': '8',
|
||||
'flex-shrink': '1',
|
||||
'flex-basis': 'auto'
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -76,6 +76,15 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<!-- indefinite unwrapped column flexbox where item doesn't stretch -->
|
||||
<div style="height: 100px;">
|
||||
<div class="flexbox column">
|
||||
<div style="align-self: flex-start">
|
||||
<span data-expected-height="0"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- indefinite wrapped column flexbox -->
|
||||
<div style="height: 100px;">
|
||||
<div class="flexbox column-wrap">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue