Bug 1845828: apply code formatting via Lando

# ignore-this-changeset
This commit is contained in:
Otto Länd 2023-08-03 14:18:06 +00:00
Родитель ab2d1ab02d
Коммит 548d6e23f7
2 изменённых файлов: 50 добавлений и 50 удалений

Просмотреть файл

@ -1,25 +1,25 @@
<!DOCTYPE html>
<meta charset=utf-8>
<style>
@font-face {
font-family: test;
src: url("Ahem.ttf");
}
</style>
<canvas id=c></canvas>
<script>
document.fonts.load("10px test").then(() => {
ctx = c.getContext("2d");
ctx.scale(1, 1);
ctx.font = "10px test";
ctx.fillText("10px test", 10, 20);
ctx.font = "11px test";
ctx.fillText("11px test", 10, 40);
ctx.font = "12px test";
ctx.fillText("12px test", 10, 60);
ctx.font = "13px test";
ctx.fillText("13px test", 10, 80);
ctx.font = "14px test";
ctx.fillText("14px test", 10, 100);
});
</script>
<!DOCTYPE html>
<meta charset=utf-8>
<style>
@font-face {
font-family: test;
src: url("Ahem.ttf");
}
</style>
<canvas id=c></canvas>
<script>
document.fonts.load("10px test").then(() => {
ctx = c.getContext("2d");
ctx.scale(1, 1);
ctx.font = "10px test";
ctx.fillText("10px test", 10, 20);
ctx.font = "11px test";
ctx.fillText("11px test", 10, 40);
ctx.font = "12px test";
ctx.fillText("12px test", 10, 60);
ctx.font = "13px test";
ctx.fillText("13px test", 10, 80);
ctx.font = "14px test";
ctx.fillText("14px test", 10, 100);
});
</script>

Просмотреть файл

@ -1,25 +1,25 @@
<!DOCTYPE html>
<meta charset=utf-8>
<style>
@font-face {
font-family: test;
src: url("Ahem.ttf");
}
</style>
<canvas id=c></canvas>
<script>
document.fonts.load("1px test").then(() => {
ctx = c.getContext("2d");
ctx.scale(10, 10);
ctx.font = "1.0px test";
ctx.fillText("10px test", 1, 2);
ctx.font = "1.1px test";
ctx.fillText("11px test", 1, 4);
ctx.font = "1.2px test";
ctx.fillText("12px test", 1, 6);
ctx.font = "1.3px test";
ctx.fillText("13px test", 1, 8);
ctx.font = "1.4px test";
ctx.fillText("14px test", 1, 10);
});
</script>
<!DOCTYPE html>
<meta charset=utf-8>
<style>
@font-face {
font-family: test;
src: url("Ahem.ttf");
}
</style>
<canvas id=c></canvas>
<script>
document.fonts.load("1px test").then(() => {
ctx = c.getContext("2d");
ctx.scale(10, 10);
ctx.font = "1.0px test";
ctx.fillText("10px test", 1, 2);
ctx.font = "1.1px test";
ctx.fillText("11px test", 1, 4);
ctx.font = "1.2px test";
ctx.fillText("12px test", 1, 6);
ctx.font = "1.3px test";
ctx.fillText("13px test", 1, 8);
ctx.font = "1.4px test";
ctx.fillText("14px test", 1, 10);
});
</script>