1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/canvas/test/reftest/drawFocusIfNeeded-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +<!--docytpe html--> 1.5 +<html><head> 1.6 +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> 1.7 +<meta charset="UTF-8"> 1.8 +<script> 1.9 +window.onload=function(){ 1.10 +var c=document.getElementById("myCanvas").getContext("2d"); 1.11 +c.beginPath(); 1.12 +c.mozDash = [1,1]; 1.13 +c.strokeRect(10, 10, 200, 200); 1.14 +} 1.15 +</script> 1.16 +</head> 1.17 +<body> 1.18 +<canvas id="myCanvas" height="500" width="500" style="border:1px solid black"> 1.19 +</canvas> 1.20 + 1.21 +</body></html>