OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <link rel="stylesheet" href="resources/shapes.css" type="text/css"></lin
k> | 4 <link rel="stylesheet" href="resources/shapes.css" type="text/css"></lin
k> |
5 <script src="../../resources/runner.js"></script> | 5 <script src="../../resources/runner.js"></script> |
6 <script src="resources/shapes.js"></script> | 6 <script src="resources/shapes.js"></script> |
7 </head> | 7 </head> |
8 <body> | 8 <body> |
9 <pre id="log"></pre> | 9 <pre id="log"></pre> |
10 <script> | 10 <script> |
11 var properties = { | 11 var properties = { |
12 width: "200px", | 12 width: "200px", |
13 height: "200px", | 13 height: "200px", |
14 webkitShapeOutside: "url(resources/shape.gif)", | 14 webkitShapeOutside: "url(resources/shape.svg)", |
15 webkitShapeMargin: "5px" | 15 webkitShapeMargin: "5px" |
16 }; | 16 }; |
17 PerfTestRunner.measureTime(createShapeOutsideTest(properties, 1000))
; | 17 PerfTestRunner.measureTime(createShapeOutsideTest(properties, 1000))
; |
18 </script> | 18 </script> |
19 </body> | 19 </body> |
20 </html> | 20 </html> |
OLD | NEW |