| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <title>Canvas test: 2d.fillStyle.parse.invalid.hex8</title> | |
| 3 <script src="../tests.js"></script> | |
| 4 <link rel="stylesheet" href="../tests.css"> | |
| 5 <body> | |
| 6 <p id="passtext">Pass</p> | |
| 7 <p id="failtext">Fail</p> | |
| 8 <p class="output">These images should be identical:</p> | |
| 9 <canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (
fallback content)</p></canvas> | |
| 10 <p class="output expectedtext">Expected output:<p><img src="green-100x50.png" cl
ass="output expected" id="expected" alt=""> | |
| 11 <ul id="d"></ul> | |
| 12 <script> | |
| 13 _addTest(function(canvas, ctx) { | |
| 14 | |
| 15 | |
| 16 ctx.fillStyle = '#0f0'; | |
| 17 try { ctx.fillStyle = '#ff0000ff'; } catch (e) { } // this shouldn't throw, but
it shouldn't matter here if it does | |
| 18 ctx.fillRect(0, 0, 100, 50); | |
| 19 _assertPixel(canvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255"); | |
| 20 | |
| 21 | |
| 22 }); | |
| 23 </script> | |
| 24 | |
| OLD | NEW |