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
27
layout/reftests/canvas/text-no-frame-test.html
Normal file
27
layout/reftests/canvas/text-no-frame-test.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Test to ensure non-framed canvas inherits properties</title>
|
||||
</head>
|
||||
<body>
|
||||
<div style="font: 40px sans-serif; direction: rtl;">
|
||||
<canvas id="c" width="512" height="256" style="display: none;"></canvas>
|
||||
</div>
|
||||
<canvas id="d" width="512" height="256"></canvas>
|
||||
<script type="text/javascript">
|
||||
var canvas = document.getElementById('c');
|
||||
var ctx = canvas.getContext('2d');
|
||||
|
||||
var str = 'BLEARGH!';
|
||||
ctx.font = '1em sans-serif';
|
||||
ctx.fillStyle = 'black';
|
||||
ctx.textAlign = 'center';
|
||||
ctx.fillText(str, 256, 128);
|
||||
|
||||
var canvas2 = document.getElementById('d');
|
||||
var ctx = canvas2.getContext('2d');
|
||||
|
||||
ctx.drawImage(canvas, 0, 0);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue