summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/evenodd-fill-sanity.html
blob: 863a79c14824fefc95fe5b955cbc09f3cb4eb2f8 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
<head>
  <script type="text/javascript">
function assert(cond, msg) { if (!cond) { throw msg; } }
window.onload = function() {
    try {
        var ctx = document.getElementById("c1").getContext("2d");

        assert("nonzero" == ctx.mozFillRule,
               "Default fillRule is 'nonzero'");

        ctx.mozFillRule = "evenodd";
        assert("evenodd" == ctx.mozFillRule,
               "fillRule understands 'evenodd'");
        ctx.mozFillRule = "nonzero";

        ctx.mozFillRule = "garbageLSKJDF 29879234";
        assert("nonzero" == ctx.mozFillRule,
               "Garbage fillRule string has no effect");

        ctx.mozFillRule = "evenodd";
        ctx.mozFillRule = "garbageLSKJDF 29879234";
        assert("evenodd" == ctx.mozFillRule,
               "Garbage fillRule string has no effect");
        ctx.mozFillRule = "nonzero";

        ctx.save();
        ctx.mozFillRule = "evenodd";
        ctx.restore();
        assert("nonzero" == ctx.mozFillRule,
               "fillRule was saved then restored");
    } catch (e) {
        document.body.innerHTML = "FAIL: "+ e.toString();
        return;
    }
    document.body.innerHTML = "Pass";
}
  </script>
</head>
<body>
  <div><canvas id="c1" width="300" height="300"></canvas></div>
</body>
</html>