grawkit/tests/simple/master.svg

28 lines
523 B
XML

<!--
# Test a simple scenario of adding a few commits to `master`.
git commit -m "Adding a new commit"
-->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-10 -10 120 20">
<style type="text/css"><![CDATA[
.branch {
fill: none;
stroke: #333;
stroke-width: 10;
}
.commit {
fill: #fff;
stroke: #333;
stroke-width: 5;
}
]]></style>
<g id="master">
<path class="branch" d="M0,0 L100,0" />
<circle class="commit" cx="0" cy="0" r="7.5" />
<circle class="commit" cx="100" cy="0" r="7.5" />
</g>
</svg>