summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/transforms/transform-svg-expected.html
blob: bce3a5b3f7ff0b4c13c0bfaa018f499e425139ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
    body { 
        padding: 0px; 
        margin: 0px;
    }

    #svgRoot {
        padding: 0px;
        margin: 0px;

        position: absolute;
        left: 200px;
        top: 200px;
   }
</style>
</head>

<body>
    <!--This test verifies that transformed SVG elements are positioned properly.-->
    <svg id="svgRoot" width="400px" height="400px" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
        <circle id="circle" cx="100" cy="100" r="10"/>
    </svg>
</body>
</html>