diff options
Diffstat (limited to 'layout/reftests/scoped-style/scoped-style-019.svg')
-rw-r--r-- | layout/reftests/scoped-style/scoped-style-019.svg | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/layout/reftests/scoped-style/scoped-style-019.svg b/layout/reftests/scoped-style/scoped-style-019.svg new file mode 100644 index 000000000..161ebc7e7 --- /dev/null +++ b/layout/reftests/scoped-style/scoped-style-019.svg @@ -0,0 +1,10 @@ +<svg xmlns="http://www.w3.org/2000/svg"> + <rect width="50" height="50"/> + <g> + <style scoped=""> + rect { fill: blue } + </style> + <rect x="60" width="50" height="50"/> + </g> + <rect x="120" width="50" height="50"/> +</svg> |