mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
do not render svg children, fixes #10646
This commit is contained in:
parent
8819dab4e3
commit
606b11c0ec
5 changed files with 43 additions and 3 deletions
|
@ -60,3 +60,11 @@ details[open]::-servo-details-content {
|
|||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Until servo supports svg properly, make sure to at least prevent svg
|
||||
* children from being layed out and rendered like usual html.
|
||||
* https://github.com/servo/servo/issues/10646
|
||||
*/
|
||||
svg > * {
|
||||
display: none;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue