| OLD | NEW | 
| (Empty) |  | 
 |   1 <!DOCTYPE html> | 
 |   2 <head> | 
 |   3 <script src="../resources/testharness.js"></script> | 
 |   4 <script src="../resources/testharnessreport.js"></script> | 
 |   5 <script src="../resources/run-after-layout-and-paint.js"></script> | 
 |   6 <script src="resources/test-runner-invalidation-logging.js"></script> | 
 |   7 <style> | 
 |   8     div { | 
 |   9         width: 100px; | 
 |  10         height: 100px; | 
 |  11  | 
 |  12         flex-basis: 200px; | 
 |  13         --str:foo; | 
 |  14         --fiftypx: 50px; | 
 |  15     } | 
 |  16 </style> | 
 |  17 </head> | 
 |  18 <p>This tests the invalidation behaviour of the paint callback.</p> | 
 |  19 <p>See the devtools console for additional test output.</p> | 
 |  20 <script> | 
 |  21 // TODO(ikilpatrick): Should test shorthands. | 
 |  22 testRunnerInvalidationLogging('content', [ | 
 |  23     { property: 'max-height', value: '160px' }, | 
 |  24     { property: 'max-height', prevValue: '100px', value: '160px' }, | 
 |  25     { property: 'max-height', prevValue: '100px', value: 'calc(50px + 50px)', no
    Invalidation: true }, | 
 |  26     { property: 'max-height', prevValue: '100px', value: 'calc(50px + var(--fift
    ypx))', noInvalidation: true }, | 
 |  27     { property: 'flex-basis', value: '100px' }, | 
 |  28     { property: 'flex-basis', prevValue: '100px' }, | 
 |  29     { property: 'flex-basis', value: '200px', noInvalidation: true }, | 
 |  30     { property: 'flex-basis', prevValue: '200px', noInvalidation: true }, | 
 |  31     { property: 'color', value: 'red' }, | 
 |  32     { property: 'color', prevValue: '#F00', value: 'red', noInvalidation: true }
    , | 
 |  33     { property: 'border-top-color', value: 'blue' }, | 
 |  34     { property: 'border-top-color', prevValue: 'rgb(0,0,255)', value: 'blue', no
    Invalidation: true }, | 
 |  35     { property: '--foo', value: 'foo' }, | 
 |  36     { property: '--foo', prevValue: 'foo', value: 'var(--str)', noInvalidation: 
    true}, | 
 |  37     { property: '--str', value: 'bar'}, | 
 |  38     { property: '--str', value: 'foo', noInvalidation: true }, | 
 |  39 ]); | 
 |  40 </script> | 
| OLD | NEW |