4 border-collapse: separate;
10 vertical-align: baseline;
19 <script src=
"../../resources/run-after-layout-and-paint.js"></script>
21 if (window
.testRunner
)
22 testRunner
.waitUntilDone();
24 runAfterLayoutAndPaint(function() {
25 var cell
= document
.getElementById('cell');
26 var input
= document
.getElementById('input');
27 // Baseline of the table cell will change when the input is set a text.
29 runAfterLayoutAndPaint(function() {
30 cell
.style
.borderColor
= 'green';
31 runAfterLayoutAndPaint(function() {
32 if (window
.testRunner
)
33 testRunner
.notifyDone();
38 Tests layout and painting of table cell after baseline and border changes.