OLD | NEW |
1 | 1 |
2 <!doctype html> | 2 <!doctype html> |
3 <html> | 3 <html> |
4 <body> | 4 <body> |
5 This test passes by not crashing ! | 5 This test passes by not crashing ! |
6 <script> | 6 <script> |
7 if (window.testRunner) { | 7 if (window.testRunner) { |
8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
9 } | 9 } |
10 window.onload = function () { | 10 window.onload = function () { |
11 var canvas = document.createElement('canvas'); | 11 var canvas = document.createElement('canvas'); |
12 canvas.width = 0; | 12 canvas.width = 0; |
13 canvas.height = 0; | 13 canvas.height = 0; |
14 var context = canvas.getContext('2d'); | 14 var context = canvas.getContext('2d'); |
15 if(context.webkitImageSmoothingEnabled) {context.webkitImageSmoo
thingEnabled = false;} | 15 if(context.webkitImageSmoothingEnabled) {context.webkitImageSmoo
thingEnabled = false;} |
16 }; | 16 }; |
17 </script> | 17 </script> |
18 </body> | 18 </body> |
19 </html> | 19 </html> |
20 | 20 |
OLD | NEW |