forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1845828: apply code formatting via Lando
# ignore-this-changeset
- Loading branch information
Otto Länd
committed
Aug 3, 2023
1 parent
ab2d1ab
commit 548d6e2
Showing
2 changed files
with
50 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |