OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 canvas { | 5 canvas { |
6 background-color: gray; | 6 background-color: gray; |
7 border-radius: 40px 200px 10px 200px; | 7 border-radius: 40px 200px 10px 200px; |
8 padding: 10px; | 8 padding: 10px; |
9 margin: 20px; | 9 margin: 20px; |
10 border: 5px solid red; | 10 border: 5px solid red; |
11 box-shadow: 0 0 8px 8px #888; | 11 box-shadow: 0 0 8px 8px #888; |
12 -webkit-transform: translateZ(0); | 12 transform: translateZ(0); |
13 } | 13 } |
14 </style> | 14 </style> |
15 </head> | 15 </head> |
16 <body> | 16 <body> |
17 <h3>It passes if:</h3> | 17 <h3>It passes if:</h3> |
18 <ul> | 18 <ul> |
19 <li>the canvas element has 8px gray shadow around</li> | 19 <li>the canvas element has 8px gray shadow around</li> |
20 <li>the canvas content has rounded corners</li> | 20 <li>the canvas content has rounded corners</li> |
21 </ul> | 21 </ul> |
22 <canvas id="theCanvas" width="257" height="257"></canvas> | 22 <canvas id="theCanvas" width="257" height="257"></canvas> |
23 <script> | 23 <script> |
24 if (window.internals) { | 24 if (window.internals) { |
25 internals.settings.setAccelerated2dCanvasEnabled(false); | 25 internals.settings.setAccelerated2dCanvasEnabled(false); |
26 } | 26 } |
27 var context = theCanvas.getContext('2d'); | 27 var context = theCanvas.getContext('2d'); |
28 context.fillStyle = 'green'; | 28 context.fillStyle = 'green'; |
29 context.fillRect(0, 0, theCanvas.width, theCanvas.width); | 29 context.fillRect(0, 0, theCanvas.width, theCanvas.width); |
30 </script> | 30 </script> |
31 </body> | 31 </body> |
32 </html> | 32 </html> |
OLD | NEW |