| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Canvas 2D Test: Red Box over Black Background</title> | 4 <title>Canvas 2D Test: Red Box over Black Background</title> |
| 5 <style type="text/css"> | 5 <style type="text/css"> |
| 6 .nomargin { | 6 .nomargin { |
| 7 margin: 0px auto; | 7 margin: 0px auto; |
| 8 } | 8 } |
| 9 </style> | 9 </style> |
| 10 <script> | 10 <script> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 </script> | 39 </script> |
| 40 </head> | 40 </head> |
| 41 <body onload="main()"> | 41 <body onload="main()"> |
| 42 <div style="position:relative; width:200px; height:200px; background-color:black
"> | 42 <div style="position:relative; width:200px; height:200px; background-color:black
"> |
| 43 </div> | 43 </div> |
| 44 <div id="container" style="position:absolute; top:0px; left:0px"> | 44 <div id="container" style="position:absolute; top:0px; left:0px"> |
| 45 <canvas id="c" width="200" height="200" class="nomargin"></canvas> | 45 <canvas id="c" width="200" height="200" class="nomargin"></canvas> |
| 46 </div> | 46 </div> |
| 47 </body> | 47 </body> |
| 48 </html> | 48 </html> |
| OLD | NEW |