mirror of
https://github.com/servo/servo.git
synced 2025-08-12 00:45:33 +01:00
Update web-platform-tests to revision b'8a99353217938b6f1da31a9a108da3d501cee58b'
This commit is contained in:
parent
62ec0f1ec7
commit
92be0baf34
211 changed files with 5373 additions and 2272 deletions
|
@ -0,0 +1,34 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>margin-trim: grid-inline-start</title>
|
||||
<link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-box-4/#margin-trim-grid">
|
||||
<link rel="match" href="grid-inline-start-ref.html">
|
||||
<meta name="assert" content="inline-start should trim inline-start margins of items on first column">
|
||||
<style>
|
||||
grid {
|
||||
display: inline-grid;
|
||||
border: 1px solid black;
|
||||
grid-template-columns: auto auto;
|
||||
margin-trim: inline-start;
|
||||
}
|
||||
|
||||
item {
|
||||
display: block;
|
||||
background-color: green;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin-inline-start: 10px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<grid>
|
||||
<item></item>
|
||||
<item></item>
|
||||
<item></item>
|
||||
<item></item>
|
||||
</grid>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue