| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <head> | 2 <head> |
| 3 <script src="../resources/testharness.js"></script> | 3 <script src="../resources/testharness.js"></script> |
| 4 <script src="../resources/testharnessreport.js"></script> | 4 <script src="../resources/testharnessreport.js"></script> |
| 5 <script src="../resources/run-after-layout-and-paint.js"></script> | 5 <script src="../resources/run-after-layout-and-paint.js"></script> |
| 6 <script src="resources/test-runner-invalidation-logging.js"></script> | 6 <script src="resources/test-runner-invalidation-logging.js"></script> |
| 7 <style> | 7 <style> |
| 8 div { | 8 div { |
| 9 width: 100px; | 9 width: 100px; |
| 10 height: 100px; | 10 height: 100px; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 { property: '--str', value: 'foo', noInvalidation: true }, | 42 { property: '--str', value: 'foo', noInvalidation: true }, |
| 43 { property: '--length-inherited', value: '10px'}, | 43 { property: '--length-inherited', value: '10px'}, |
| 44 { property: '--length-non-inherited', value: '20px'}, | 44 { property: '--length-non-inherited', value: '20px'}, |
| 45 { property: '-webkit-border-radius', value: '25px'}, | 45 { property: '-webkit-border-radius', value: '25px'}, |
| 46 { property: '-webkit-border-radius', invalidationProperty: 'border-radius',
value: '25px'}, | 46 { property: '-webkit-border-radius', invalidationProperty: 'border-radius',
value: '25px'}, |
| 47 { property: 'border-radius', invalidationProperty: '-webkit-border-radius',
prevValue: '25px'}, | 47 { property: 'border-radius', invalidationProperty: '-webkit-border-radius',
prevValue: '25px'}, |
| 48 { property: '-webkit-border-radius', prevValue: '100px', value: 'calc(50px +
50px)', noInvalidation: true }, | 48 { property: '-webkit-border-radius', prevValue: '100px', value: 'calc(50px +
50px)', noInvalidation: true }, |
| 49 { property: '-webkit-margin-start', invalidationProperty: 'margin-left', pre
vValue: 'calc(50px + 50px)', value: '100px', noInvalidation: true }, | 49 { property: '-webkit-margin-start', invalidationProperty: 'margin-left', pre
vValue: 'calc(50px + 50px)', value: '100px', noInvalidation: true }, |
| 50 ]); | 50 ]); |
| 51 </script> | 51 </script> |
| OLD | NEW |