| 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 <script src="resources/generate-paint-style-logging.js"></script> | 6 <script src="resources/generate-paint-style-logging.js"></script> |
| 7 <style> | 7 <style> |
| 8 div { | 8 div { |
| 9 border-radius: 3px; | 9 border-radius: 3px; |
| 10 } | 10 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 'border-radius', | 33 'border-radius', |
| 34 ])); | 34 ])); |
| 35 </script> | 35 </script> |
| 36 <p>This tests the style information in the paint callback.</p> | 36 <p>This tests the style information in the paint callback.</p> |
| 37 <p>See the devtools console for test output. The console should log:</p> | 37 <p>See the devtools console for test output. The console should log:</p> |
| 38 --bar: [null]<br> | 38 --bar: [null]<br> |
| 39 --foo: [CSSStyleValue= bar]<br> | 39 --foo: [CSSStyleValue= bar]<br> |
| 40 border-radius: [CSSStyleValue=2px] | 40 border-radius: [CSSStyleValue=2px] |
| 41 </body> | 41 </body> |
| 42 </html> | 42 </html> |
| OLD | NEW |