OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../resources/run-after-layout-and-paint.js"></script> | 4 <script src="../resources/run-after-layout-and-paint.js"></script> |
5 <script src="resources/test-runner-paint-worklet.js"></script> | 5 <script src="resources/test-runner-paint-worklet.js"></script> |
6 <style> | 6 <style> |
7 #output { | 7 #output { |
8 width: 100px; | 8 width: 100px; |
9 height: 100px; | 9 height: 100px; |
10 background-image: paint(rects); | 10 background-image: paint(worklet); |
11 background-color: blue; | |
12 } | 11 } |
13 </style> | 12 </style> |
14 </head> | 13 </head> |
15 <body> | 14 <body> |
16 <div id="output"></div> | 15 <div id="output"></div> |
17 | 16 |
18 <script id="code" type="text/worklet"> | 17 <script id="code" type="text/worklet"> |
19 registerPaint('rects', class { | 18 registerPaint('worklet', class { |
20 paint(ctx, geom) { | 19 paint(ctx, geom) { |
21 ctx.fillStyle = 'green'; | 20 ctx.rotate(10 * Math.PI / 180); |
22 ctx.fillRect(0, 0, geom.width, geom.height); | 21 ctx.strokeStyle = 'blue'; |
23 | 22 ctx.lineWidth = 4; |
24 ctx.clearRect(40, 40, 20, 20); | 23 ctx.strokeRect(30, 10, 30, 30); |
25 | 24 console.log('width: ' + geom.width + ', height: ' + geom.height); |
26 ctx.strokeStyle = 'red'; | |
27 ctx.lineWidth = 4; | |
28 ctx.strokeRect(20, 20, 60, 60); | |
29 } | 25 } |
30 }); | 26 }); |
31 </script> | 27 </script> |
32 | 28 |
33 <script> | 29 <script> |
| 30 document.body.style.zoom = "300%"; |
| 31 console.log('The worklet should log: \'width: 100, height: 100\''); |
34 importPaintWorkletAndTerminateTestAfterAsyncPaint(document.getElementById('c
ode').textContent); | 32 importPaintWorkletAndTerminateTestAfterAsyncPaint(document.getElementById('c
ode').textContent); |
35 </script> | 33 </script> |
36 </body> | 34 </body> |
37 </html> | 35 </html> |
OLD | NEW |