chromium/third_party/blink/web_tests/svg/custom/style-attribute-font-size.svg

<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <rect fill="red" x="0" y="0" width="10em" height="10em" style="font-size:10"/>
    <rect fill="green" x="0" y="0" width="10em" height="10em" font-size="10"/>
    <text y="20" x="150"  font-size="10">SVG</text>
    <text y="40" x="150" style="font-size:10">SVG</text>

  <g transform="matrix(1 0 0 1 10 140)">
    <text font-family="'Courier'" font-size="12">

      <tspan x="0" y="0">For this test case to be successful, the</tspan>
      <tspan x="0" y="15">rect should be green and the texts equal size. </tspan>
      <tspan x="0" y="30">Bug 14926</tspan>
    </text>
  </g>
</svg>