| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../resources/run-after-layout-and-paint.js"></script> | |
| 5 <script src="resources/test-runner-paint-worklet.js"></script> | |
| 6 <script src="resources/generate-paint-style-logging.js"></script> | |
| 7 <style> | |
| 8 div { | |
| 9 width: 100px; | |
| 10 height: 100px; | |
| 11 | |
| 12 background-image: paint(test); | |
| 13 border-radius: 2px; | |
| 14 --foo: bar; | |
| 15 } | |
| 16 </style> | |
| 17 </head> | |
| 18 <body> | |
| 19 <div></div> | |
| 20 <script> | |
| 21 if (window.testRunner) | |
| 22 testRunner.dumpAsText(); | |
| 23 | |
| 24 importPaintWorkletAndTerminateTestAfterAsyncPaint( | |
| 25 generatePaintStyleLogging([ | |
| 26 '--bar', | |
| 27 '--foo', | |
| 28 'align-items', | |
| 29 'border-radius', | |
| 30 ])); | |
| 31 </script> | |
| 32 <p>This tests the style information in the paint callback.</p> | |
| 33 <p>See the devtools console for test output. The console should log:</p> | |
| 34 --bar: [null]<br> | |
| 35 --foo: [CSSStyleValue= bar]<br> | |
| 36 align-items: [CSSKeywordValue=normal]<br> | |
| 37 border-radius: [CSSStyleValue=2px] | |
| 38 </body> | |
| 39 </html> | |
| OLD | NEW |