|
@@ -1102,6 +1102,22 @@ void TableFormattingContext::position_cell_boxes()
|
|
cell_state.padding_bottom += height_diff;
|
|
cell_state.padding_bottom += height_diff;
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
|
|
+ case CSS::VerticalAlign::Sub: {
|
|
|
|
+ dbgln("FIXME: Implement \"vertical-align: sub\" support for table cells");
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ case CSS::VerticalAlign::Super: {
|
|
|
|
+ dbgln("FIXME: Implement \"vertical-align: super\" support for table cells");
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ case CSS::VerticalAlign::TextBottom: {
|
|
|
|
+ dbgln("FIXME: Implement \"vertical-align: text-bottom\" support for table cells");
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ case CSS::VerticalAlign::TextTop: {
|
|
|
|
+ dbgln("FIXME: Implement \"vertical-align: text-top\" support for table cells");
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
default:
|
|
default:
|
|
VERIFY_NOT_REACHED();
|
|
VERIFY_NOT_REACHED();
|
|
}
|
|
}
|