Auto merge of #10684 - Swatinem:hide_svg, r=Ms2ger

do not render svg children, fixes #10646

r? jdm

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10684)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-04-25 05:55:42 -07:00
commit 97a45dc30c
5 changed files with 43 additions and 3 deletions

View file

@ -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;
}