summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/subpixel-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/canvas/subpixel-1.html')
-rw-r--r--layout/reftests/canvas/subpixel-1.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layout/reftests/canvas/subpixel-1.html b/layout/reftests/canvas/subpixel-1.html
new file mode 100644
index 0000000000..398912e471
--- /dev/null
+++ b/layout/reftests/canvas/subpixel-1.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+<body>
+<canvas id="canvas"></canvas>
+<script>
+var c = canvas.getContext('2d');
+c.font = "8pt sans-serif";
+c.textAlign = "center";
+c.textBaseline = "middle";
+c.fillStyle = "white";
+c.fillText("Test Text", canvas.width / 2, canvas.height / 2);
+</script>
+</body>
+</html>