diff options
Diffstat (limited to 'dom/canvas/test/reftest/1177726-text-stroke-bounds.html')
-rw-r--r-- | dom/canvas/test/reftest/1177726-text-stroke-bounds.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dom/canvas/test/reftest/1177726-text-stroke-bounds.html b/dom/canvas/test/reftest/1177726-text-stroke-bounds.html new file mode 100644 index 0000000000..1f459ce0b6 --- /dev/null +++ b/dom/canvas/test/reftest/1177726-text-stroke-bounds.html @@ -0,0 +1,28 @@ +<!DOCTYPE HTML> +<html> +<head> + <meta charset="utf-8"> + <title>Testcase for bug 1177726</title> +</head> +<body> + +<canvas id="c" width="400" height="200"> +<p>No canvas.</p> +</canvas> + +<script> +var canvas = document.getElementsByTagName("canvas")[0]; +var ctx = canvas.getContext('2d'); + +ctx.shadowColor = 'white'; +ctx.shadowOffsetX = 5; +ctx.shadowOffsetY = 5; +ctx.shadowBlur = 0; +ctx.font = "120px 'Helvetica'"; +ctx.lineWidth = 15; +ctx.lineJoin = "round"; + +ctx.strokeText("Ehsan", 20, 110); +</script> +</body> +</html> |