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 <style> | 5 <style> |
6 #output { | 6 #output { |
7 width: 100px; | 7 width: 100px; |
8 height: 100px; | 8 height: 100px; |
9 background-color: red; | 9 background-color: red; |
10 } | 10 } |
(...skipping 10 matching lines...) Expand all Loading... |
21 } | 21 } |
22 }); | 22 }); |
23 </script> | 23 </script> |
24 | 24 |
25 <script> | 25 <script> |
26 if (window.testRunner) { | 26 if (window.testRunner) { |
27 testRunner.waitUntilDone(); | 27 testRunner.waitUntilDone(); |
28 } | 28 } |
29 | 29 |
30 var blob = new Blob([document.getElementById('code').textContent]); | 30 var blob = new Blob([document.getElementById('code').textContent]); |
31 paintWorklet.import(URL.createObjectURL(blob)).then(function() { | 31 paintWorklet.addModule(URL.createObjectURL(blob)).then(function() { |
32 var el = document.getElementById('output'); | 32 var el = document.getElementById('output'); |
33 el.style.backgroundImage = 'paint(green)'; | 33 el.style.backgroundImage = 'paint(green)'; |
34 runAfterLayoutAndPaint(function() { | 34 runAfterLayoutAndPaint(function() { |
35 if (window.testRunner) { | 35 if (window.testRunner) { |
36 testRunner.notifyDone(); | 36 testRunner.notifyDone(); |
37 } | 37 } |
38 }); | 38 }); |
39 }); | 39 }); |
40 </script> | 40 </script> |
41 </body> | 41 </body> |
42 </html> | 42 </html> |
OLD | NEW |