resources: Style anonymous blocks and anonymous table flows

appropriately in the UA stylesheet.
This commit is contained in:
Patrick Walton 2016-10-24 18:02:10 -07:00
parent fb2d1e1020
commit 1ab56c0ccd

View file

@ -171,3 +171,47 @@ svg > * {
*|*::-servo-input-text { *|*::-servo-input-text {
margin: 0; 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;
}