| OLD | NEW |
| 1 <!-- Based on fast/table/border-collapsing/cached-change-colgroup-border-color.h
tml --> | 1 <!-- Based on fast/table/border-collapsing/cached-change-colgroup-border-color.h
tml --> |
| 2 <!-- | 2 <!-- |
| 3 Calculating collapsed borders for big tables is expensive, so we cache them and
recalculate when needed. | 3 Calculating collapsed borders for big tables is expensive, so we cache them and
recalculate when needed. |
| 4 Here we change colgroup border color, expect that cache is invalidated and paint
produces expected image. | 4 Here we change colgroup border color, expect that cache is invalidated and paint
produces expected image. |
| 5 --> | 5 --> |
| 6 <html> | 6 <html> |
| 7 <head> | 7 <head> |
| 8 <title></title> | 8 <title></title> |
| 9 <link rel="stylesheet" href="../../../fast/table/border-collapsing/resou
rces/cached.css"> | 9 <link rel="stylesheet" href="../../../fast/table/border-collapsing/resou
rces/cached.css"> |
| 10 <script src="resources/paint-invalidation-test.js"></script> | 10 <script src="resources/paint-invalidation-test.js"></script> |
| 11 <script type="text/javascript"> | 11 <script type="text/javascript"> |
| 12 window.expectedPaintInvalidationObjects = [ | |
| 13 "LayoutTableCell TD", | |
| 14 "LayoutTableCell TD", | |
| 15 "LayoutTableCell TD", | |
| 16 "LayoutTableCell TD", | |
| 17 "LayoutTableCell TD", | |
| 18 "LayoutTableCell TD", | |
| 19 "LayoutTableCell TD", | |
| 20 "LayoutTableCell TD", | |
| 21 "LayoutTableCell TD", | |
| 22 "LayoutTableCell TD", | |
| 23 "LayoutTableCol COLGROUP id='colgroup'", | |
| 24 ]; | |
| 25 function paintInvalidationTest() { | 12 function paintInvalidationTest() { |
| 26 document.getElementById("colgroup").style.borderColor = "yellow"
; | 13 document.getElementById("colgroup").style.borderColor = "yellow"
; |
| 27 } | 14 } |
| 28 </script> | 15 </script> |
| 29 </head> | 16 </head> |
| 30 <body onload="runPaintInvalidationTest()"> | 17 <body onload="runPaintInvalidationTest()"> |
| 31 <table style="border-collapse:collapse; border:1px solid blue"> | 18 <table style="border-collapse:collapse; border:1px solid blue"> |
| 32 <colgroup style="border:4px solid pink" id="colgroup"> | 19 <colgroup style="border:4px solid pink" id="colgroup"> |
| 33 <col> | 20 <col> |
| 34 <col> | 21 <col> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 45 <tr> | 32 <tr> |
| 46 <td/> | 33 <td/> |
| 47 <td/> | 34 <td/> |
| 48 <td/> | 35 <td/> |
| 49 </tr> | 36 </tr> |
| 50 </tbody> | 37 </tbody> |
| 51 </table> | 38 </table> |
| 52 </body> | 39 </body> |
| 53 </html> | 40 </html> |
| 54 | 41 |
| OLD | NEW |