mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 01:47: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
50
layout/reftests/canvas/text-font-lang-notref.html
Normal file
50
layout/reftests/canvas/text-font-lang-notref.html
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Test for language-sensitive font prefs on canvas</title>
|
||||
<script type="text/javascript">
|
||||
function test(canvasID) {
|
||||
var canvas = document.getElementById(canvasID);
|
||||
var ctx = canvas.getContext('2d');
|
||||
|
||||
var str = 'Hello world! \u4F60\u597D\u5417\uFF1F';
|
||||
ctx.font = '2em sans-serif';
|
||||
ctx.fillStyle = 'black';
|
||||
ctx.textAlign = 'left';
|
||||
ctx.textBaseline = 'top';
|
||||
ctx.fillText(str, 10, 10);
|
||||
};
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div lang="en" style="margin:20px; height:100px;">
|
||||
<canvas id="c1" width="400" height="50"></canvas>
|
||||
<script type="text/javascript">
|
||||
test("c1");
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<div lang="en" style="margin:20px; height:100px;">
|
||||
<canvas id="c2" width="400" height="50"></canvas>
|
||||
<script type="text/javascript">
|
||||
test("c2");
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<div lang="en" style="margin:20px; height:100px;">
|
||||
<canvas id="c3" width="400" height="50"></canvas>
|
||||
<script type="text/javascript">
|
||||
test("c3");
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<div lang="en" style="margin:20px; height:100px;">
|
||||
<canvas id="c4" width="400" height="50"></canvas>
|
||||
<script type="text/javascript">
|
||||
test("c4");
|
||||
</script>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue