| <!DOCTYPE html> |
| <title>Canvas test: 2d.composite.operation.foobar</title> |
| <script src="../tests.js"></script> |
| <link rel="stylesheet" href="../tests.css"> |
| <link rel="prev" href="2d.composite.operation.over.html" title="2d.composite.operation.over"> |
| <link rel="next" href="2d.composite.operation.highlight.html" title="2d.composite.operation.highlight"> |
| <body class="show_output"> |
| <p> |
| <a href="2d.composite.operation.over.html" accesskey="p" title="[p] 2d.composite.operation.over"><</a> |
| <a href="index.html">[index]</a> |
| <a href="2d.composite.operation.highlight.html" accesskey="n" title="[n] 2d.composite.operation.highlight">></a> |
| <h1><a href="index.2d.html">2d</a>.<a href="index.2d.composite.html">composite</a>.<a href="index.2d.composite.operation.html">operation</a>.foobar</h1> |
| <p class="desc"></p> |
| <div class="refs">References: |
| <ul> |
| <li><a href="spec.html#testrefs.2d.composite.operation.unrecognised">2d.composite.operation.unrecognised</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) { |
| |
| ctx.globalCompositeOperation = 'xor'; |
| ctx.globalCompositeOperation = 'foobar!'; |
| _assertEqual(ctx.globalCompositeOperation, 'xor', "ctx.globalCompositeOperation", "'xor'"); |
| |
| |
| }); |
| </script> |
| |