Blame result/SVG/viewport-transform.xml

Packit Service a31ea6
Packit Service a31ea6
Packit Service a31ea6
<svg width="300px" height="3oopx">
Packit Service a31ea6
  <desc>Transformation with establishment of a new viewport
Packit Service a31ea6
  </desc>
Packit Service a31ea6
Packit Service a31ea6
        font height of 12 pixels -->
Packit Service a31ea6
  <text style="font-size: 12">This prints 12 pixels high.</text>
Packit Service a31ea6
  <text style="font-size: 12px">This prints 12 pixels high.</text>
Packit Service a31ea6
Packit Service a31ea6
  <g style="transform: scale(2)">
Packit Service a31ea6
Packit Service a31ea6
           because each unit in the new coordinate system equals
Packit Service a31ea6
           2 units in the previous coordinate system. -->
Packit Service a31ea6
    <text style="font-size: 12">This prints 24 pixels high.</text>
Packit Service a31ea6
Packit Service a31ea6
           because the CSS unit specifier has been provided. -->
Packit Service a31ea6
    <text style="font-size: 12px">This prints 12 pixels high.</text>
Packit Service a31ea6
  </g>
Packit Service a31ea6
Packit Service a31ea6
  <g style="transform: scale(3)">
Packit Service a31ea6
Packit Service a31ea6
           some CSS unit specifiers. -->
Packit Service a31ea6
    <svg style="left:0; top:0; right:100; bottom:100" width="100%" height="100%">
Packit Service a31ea6
Packit Service a31ea6
              font height of 36 screen pixels. The first text element
Packit Service a31ea6
              defines its height in user coordinates, which have been
Packit Service a31ea6
              scaled by 3. The second text element defines its height
Packit Service a31ea6
              in CSS px units, which have been redefined to be three times
Packit Service a31ea6
              as big as screen pixels due the <svg> element establishing
Packit Service a31ea6
              a new viewport. -->
Packit Service a31ea6
      <text style="font-size: 12">This prints 36 pixels high.</text>
Packit Service a31ea6
      <text style="font-size: 12px">This prints 36 pixels high.</text>
Packit Service a31ea6
    </svg>
Packit Service a31ea6
  </g>
Packit Service a31ea6
</svg>