| OLD | NEW |
| 1 <!-- Based on fast/table/border-collapsing/cached-change-colgroup-border-color.h
tml --> |
| 1 <!-- | 2 <!-- |
| 2 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. |
| 3 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. |
| 4 --> | 5 --> |
| 5 <html> | 6 <html> |
| 6 <head> | 7 <head> |
| 7 <title></title> | 8 <title></title> |
| 8 <link rel="stylesheet" href="resources/cached.css"> | 9 <link rel="stylesheet" href="../../../fast/table/border-collapsing/resou
rces/cached.css"> |
| 9 <script src="../../../fast/repaint/resources/text-based-repaint.js"></sc
ript> | 10 <script src="resources/paint-invalidation-test.js"></script> |
| 10 <script type="text/javascript"> | 11 <script type="text/javascript"> |
| 11 function repaintTest() { | 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 document.getElementById("colgroup").style.borderColor = "yellow"
; | 26 document.getElementById("colgroup").style.borderColor = "yellow"
; |
| 13 } | 27 } |
| 14 </script> | 28 </script> |
| 15 </head> | 29 </head> |
| 16 <body onload="runRepaintTest()"> | 30 <body onload="runPaintInvalidationTest()"> |
| 17 <table style="border-collapse:collapse; border:1px solid blue"> | 31 <table style="border-collapse:collapse; border:1px solid blue"> |
| 18 <colgroup style="border:4px solid pink" id="colgroup"> | 32 <colgroup style="border:4px solid pink" id="colgroup"> |
| 19 <col> | 33 <col> |
| 20 <col> | 34 <col> |
| 21 </colgroup> | 35 </colgroup> |
| 22 <colgroup> | 36 <colgroup> |
| 23 <col> | 37 <col> |
| 24 </colgroup> | 38 </colgroup> |
| 25 <tbody> | 39 <tbody> |
| 26 <tr> | 40 <tr> |
| 27 <td style="border:2px solid lime"/> | 41 <td style="border:2px solid lime"/> |
| 28 <td/> | 42 <td/> |
| 29 <td/> | 43 <td/> |
| 30 </tr> | 44 </tr> |
| 31 <tr> | 45 <tr> |
| 32 <td/> | 46 <td/> |
| 33 <td/> | 47 <td/> |
| 34 <td/> | 48 <td/> |
| 35 </tr> | 49 </tr> |
| 36 </tbody> | 50 </tbody> |
| 37 </table> | 51 </table> |
| 38 </body> | 52 </body> |
| 39 </html> | 53 </html> |
| 40 | 54 |
| OLD | NEW |