blob: 1733ebcc9a53734049a69b03893e5fd8b782f779 [file] [log] [blame]
<!DOCTYPE html>
<title>Canvas test: 2d.state.saverestore.font</title>
<meta name="author" content="Philip Taylor">
<script src="../common/canvas-tests.js"></script>
<link rel="stylesheet" href="../common/canvas-tests.css">
<body class="show_output">
<h1><a href="index.2d.html">2d</a>.<a href="index.2d.state.html">state</a>.<a href="index.2d.state.saverestore.html">saverestore</a>.font</h1>
<p class="desc">save()/restore() works for font</p>
<div class="refs">Spec references:
<ul>
<li><a href="../annotated-spec/canvas.html#testrefs.2d.state.font">2d.state.font</a>
</ul>
</div>
<p class="output">Actual output:</p>
<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
<ul id="d"></ul>
<script>
_addTest(function(canvas, ctx) {
// Test that restore() undoes any modifications
var old = ctx.font;
ctx.save();
ctx.font = "25px serif";
ctx.restore();
_assertSame(ctx.font, old, "ctx.font", "old");
// Also test that save() doesn't modify the values
ctx.font = "25px serif";
old = ctx.font;
// we're not interested in failures caused by get(set(x)) != x (e.g.
// from rounding), so compare against 'old' instead of against "25px serif"
ctx.save();
_assertSame(ctx.font, old, "ctx.font", "old");
ctx.restore();
});
</script>