Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>foreignObject is valid inside SVG use elements</title>
<link rel="author" title="Psychpsyo" href="psychpsyo@gmail.com">
<link rel="match" href="reference/green-100x100.html">
<style>
svg {
width: 100px;
height: 100px;
background-color: red;
}
#square {
width: 100px;
height: 100px;
background-color: green;
}
</style>
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<symbol id="ref">
<foreignObject width="100" height="100">
<div id="square"></div>
</foreignObject>
</symbol>
<use href="#ref" />
</svg>