mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,41 @@
|
|||
<!DOCTYPE html>
|
||||
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
||||
<title>Canvas test: 2d.state.saverestore.fillStyle</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/common/canvas-tests.js"></script>
|
||||
<link rel="stylesheet" href="/common/canvas-tests.css">
|
||||
<body class="show_output">
|
||||
|
||||
<h1>2d.state.saverestore.fillStyle</h1>
|
||||
<p class="desc">save()/restore() works for fillStyle</p>
|
||||
|
||||
|
||||
<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>
|
||||
var t = async_test("save()/restore() works for fillStyle");
|
||||
_addTest(function(canvas, ctx) {
|
||||
|
||||
// Test that restore() undoes any modifications
|
||||
var old = ctx.fillStyle;
|
||||
ctx.save();
|
||||
ctx.fillStyle = "#ff0000";
|
||||
ctx.restore();
|
||||
_assertSame(ctx.fillStyle, old, "ctx.fillStyle", "old");
|
||||
|
||||
// Also test that save() doesn't modify the values
|
||||
ctx.fillStyle = "#ff0000";
|
||||
old = ctx.fillStyle;
|
||||
// we're not interested in failures caused by get(set(x)) != x (e.g.
|
||||
// from rounding), so compare against 'old' instead of against "#ff0000"
|
||||
ctx.save();
|
||||
_assertSame(ctx.fillStyle, old, "ctx.fillStyle", "old");
|
||||
ctx.restore();
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue