| Index: third_party/WebKit/LayoutTests/csspaint/resources/generate-paint-style-logging.js
|
| diff --git a/third_party/WebKit/LayoutTests/csspaint/resources/generate-paint-style-logging.js b/third_party/WebKit/LayoutTests/csspaint/resources/generate-paint-style-logging.js
|
| index e9175beb8b719acfda31a8296776c309142f23c6..fd142c2f023260d0afacf3970edcbc1f83667f4c 100644
|
| --- a/third_party/WebKit/LayoutTests/csspaint/resources/generate-paint-style-logging.js
|
| +++ b/third_party/WebKit/LayoutTests/csspaint/resources/generate-paint-style-logging.js
|
| @@ -16,7 +16,7 @@ function generatePaintStyleLogging(properties) {
|
| const properties = styleMap.getProperties().sort();
|
| for (let i = 0; i < properties.length; i++) {
|
| const value = styleMap.get(properties[i]);
|
| - console.log(properties[i] + ': ' + (value ? value.cssString : '[null]'));
|
| + console.log(properties[i] + ': ' + (value ? value.cssText: '[null]'));
|
| }
|
| }
|
| });
|
|
|