Skip to content

Commit

Permalink
resources: Style anonymous blocks and anonymous table flows
Browse files Browse the repository at this point in the history
appropriately in the UA stylesheet.
  • Loading branch information
pcwalton committed Oct 26, 2016
1 parent fb2d1e1 commit 1ab56c0
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions resources/servo.css
Expand Up @@ -171,3 +171,47 @@ svg > * {
*|*::-servo-input-text {
margin: 0;
}

*|*::-servo-table-wrapper {
display: table;
border: none;
}

*|*::-servo-anonymous-table-wrapper {
position: static;
margin: 0;
counter-increment: none;
}

*|*::-servo-anonymous-table {
display: table;
position: static;
border: none;
padding: 0;
counter-increment: none;
}

*|*::-servo-anonymous-table-row {
display: table-row;
position: static;
border: none;
counter-increment: none;
}

*|*::-servo-anonymous-table-cell {
display: table-cell;
position: static;
border: none;
counter-increment: none;
}

*|*::-servo-anonymous-block {
display: block;
position: static;
border: none;
padding: 0;
margin: 0;
width: auto;
height: auto;
}

0 comments on commit 1ab56c0

Please sign in to comment.