Bug 789933. test for writing text across Azure backends. r=Bas

This commit is contained in:
Nicholas Cameron 2012-12-06 10:55:13 +13:00
parent 5d370031dc
commit 51ebbd692d
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<body>
<canvas id="c" width="5000" height="20000">
</canvas>
<script>
var ctxt = document.getElementById('c').getContext('2d');
ctxt.strokeStyle = "Red";
ctxt.font = "bold 16px Arial";
ctxt.strokeText('Hello World!', 100, 100);
</script>
</body>
</html>

View File

@ -14,5 +14,6 @@ load 746813-1.html
load 743499-negative-size.html
load 767337-1.html
load 780392-1.html
load 789933-1.html
load 794463-1.html
load 802926-1.html