1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/canvas/text-subpixel-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<body style="background:white"> 1.7 +<canvas id="c" width="500" height="500"></canvas> 1.8 +<script> 1.9 +var ctx = c.getContext('2d'); 1.10 +ctx.fillStyle = "black"; 1.11 +ctx.font = "50px sans-serif"; 1.12 +ctx.fillText("Hello", 200, 200); 1.13 +</script> 1.14 +</body> 1.15 +</html>