Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/PVS/lebesgue/pvsbin/   (PVS Prover Version 6.0.9©)  Datei vom 8.10.2014 mit Größe 311 kB image not shown  

Impressum test_offscreencanvas_font.html

  Sprache: HTML
 

 products/Sources/formale Sprachen/C/Firefox/dom/canvas/test/test_offscreencanvas_font.html


<!DOCTYPE HTML>
<html>
<head>
<title>Serialization of font on OffscreenCanvas2d</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
</head>
<body>
<canvas id="c">
<script>

SimpleTest.waitForExplicitFinish();

function testFontShorthand(ctx, font) {
  ctx.font = font;
  let w1 = ctx.measureText("Hello World").width;
  let f = ctx.font;
  ctx.font = f;
  let w2 = ctx.measureText("Hello World").width;
  ok(w1 === w2, "serialization and re-setting of \"" +
                font + "\" as \"" + f + "\" is idempotent");
}

const tests = [
  "12px serif",
  "12px/1.4 serif",
  "italic 12px serif",
  "oblique 12px serif",
  "bold 12px serif",
  "bold italic 12px serif",
  "condensed bold italic 12px serif",
  "500 italic 12px serif",
  "italic 500 12px serif",
];

function runTest() {
  let canvas = new OffscreenCanvas(100100);
  let ctx = canvas.getContext("2d");
  tests.forEach((t) => {
    testFontShorthand(ctx, t);
  });

  // Although the bug that motivated this test was specific to offscreen canvas,
  // let's also check that it works with a <canvas> element.
  ctx = document.getElementById("c").getContext("2d");
  tests.forEach((t) => {
    testFontShorthand(ctx, t);
  });

  SimpleTest.finish();
}

runTest();

</script>
</body>
</html>

Messung V0.5 in Prozent
C=100 H=100 G=100

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.