Update web-platform-tests to revision 332b7c4e711d75ead4c0dfbf7f6f0b683206756d

This commit is contained in:
WPT Sync Bot 2019-09-25 10:24:05 +00:00
parent 46611b012e
commit b60afa18f5
389 changed files with 7767 additions and 2421 deletions

View file

@ -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>

View file

@ -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>