Skip to content

Commit

Permalink
Bug 1845828: apply code formatting via Lando
Browse files Browse the repository at this point in the history
# ignore-this-changeset
  • Loading branch information
Otto Länd committed Aug 3, 2023
1 parent ab2d1ab commit 548d6e2
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 50 deletions.
50 changes: 25 additions & 25 deletions gfx/tests/reftest/1845828-1-ref.html
Original file line number Diff line number Diff line change
@@ -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>
50 changes: 25 additions & 25 deletions gfx/tests/reftest/1845828-1.html
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit 548d6e2

Please sign in to comment.