diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /layout/reftests/writing-mode/1090168-1-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/writing-mode/1090168-1-ref.html')
-rw-r--r-- | layout/reftests/writing-mode/1090168-1-ref.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/1090168-1-ref.html b/layout/reftests/writing-mode/1090168-1-ref.html new file mode 100644 index 0000000000..8f9520cc1b --- /dev/null +++ b/layout/reftests/writing-mode/1090168-1-ref.html @@ -0,0 +1,41 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +</head> +<body> +<script type="text/javascript"> +var testFont = '40px sans-serif'; + +function test(x, y, text, style, rotation) { + var canvas = document.createElement("canvas"); + canvas.width = 400; + canvas.height = 400; + canvas.style.cssText = 'position:absolute;' + style; + document.getElementsByTagName('body')[0].appendChild(canvas); + var ctx = canvas.getContext('2d'); + ctx.globalAlpha = 0.5; + ctx.beginPath(); + ctx.moveTo(x - 20, y); ctx.lineTo(x + 20, y); + ctx.moveTo(x, y - 20); ctx.lineTo(x, y + 20); + ctx.stroke(); + ctx.globalAlpha = 1.0; + ctx.font = testFont; + if (rotation != 0) { + ctx.translate(x,y); + ctx.rotate(rotation); + ctx.translate(-x,-y); + } + ctx.fillText(text, x, y); +} + +// Testcase: vertical text with orientation:sideways-right +// test(100, 50, 'Hello', 'writing-mode:vertical-lr;text-orientation:sideways-right', 0); + +// Reference: horizontal text with 90° rotation +test(100, 50, 'Hello', 'writing-mode:horizontal-tb', Math.PI/2); + +// Non-reference: vertical text with orientation:mixed +// test(100, 50, 'Hello', 'writing-mode:vertical-lr;text-orientation:mixed', 0); + +</script> |