mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +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,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS basic box model: margin sets longhands</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-box-3/#propdef-margin">
|
||||
<meta name="assert" content="margin supports the full grammar '<length-percentage>{1,4}'.">
|
||||
<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('margin', '1px 2px 3px 4px', {
|
||||
'margin-top': '1px',
|
||||
'margin-right': '2px',
|
||||
'margin-bottom': '3px',
|
||||
'margin-left': '4px'
|
||||
});
|
||||
|
||||
test_shorthand_value('margin', '1px 2px 3px', {
|
||||
'margin-top': '1px',
|
||||
'margin-right': '2px',
|
||||
'margin-bottom': '3px',
|
||||
'margin-left': '2px'
|
||||
});
|
||||
|
||||
test_shorthand_value('margin', '1px 2px', {
|
||||
'margin-top': '1px',
|
||||
'margin-right': '2px',
|
||||
'margin-bottom': '1px',
|
||||
'margin-left': '2px'
|
||||
});
|
||||
|
||||
test_shorthand_value('margin', '1px', {
|
||||
'margin-top': '1px',
|
||||
'margin-right': '1px',
|
||||
'margin-bottom': '1px',
|
||||
'margin-left': '1px'
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS basic box model: padding sets longhands</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-box-3/#propdef-padding">
|
||||
<meta name="assert" content="padding supports the full grammar '<length-percentage>{1,4}'.">
|
||||
<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('padding', '1px 2px 3px 4px', {
|
||||
'padding-top': '1px',
|
||||
'padding-right': '2px',
|
||||
'padding-bottom': '3px',
|
||||
'padding-left': '4px'
|
||||
});
|
||||
|
||||
test_shorthand_value('padding', '1px 2px 3px', {
|
||||
'padding-top': '1px',
|
||||
'padding-right': '2px',
|
||||
'padding-bottom': '3px',
|
||||
'padding-left': '2px'
|
||||
});
|
||||
|
||||
test_shorthand_value('padding', '1px 2px', {
|
||||
'padding-top': '1px',
|
||||
'padding-right': '2px',
|
||||
'padding-bottom': '1px',
|
||||
'padding-left': '2px'
|
||||
});
|
||||
|
||||
test_shorthand_value('padding', '1px', {
|
||||
'padding-top': '1px',
|
||||
'padding-right': '1px',
|
||||
'padding-bottom': '1px',
|
||||
'padding-left': '1px'
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue