Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/crashtests/crashtests.list
<!--
Any copyright is dedicated to the Public Domain.
-->
<style id="s" type="text/css">
tspan { fill: green;}
.flex { display:flex; }
.grid { display:grid; }
.col { columns: 3; }
</style>
<text class="flex">
<tspan x="100" y="50">A</tspan>
B
</text>
<text class="grid">
<tspan x="100" y="50">A</tspan>
B
</text>
<text class="col">
<tspan x="100" y="50">A</tspan>
B
</text>
</svg>