cssConfigurator.initialise(config,
INTERNAL_DEVICE_FACTORY.createInternalDevice(device));
cssProperty = config.getCssVersion().getProperty(
StylePropertyDetails.VERTICAL_ALIGN);
// It should have top and bottom.
assertTrue(cssProperty.supportsKeyword(VerticalAlignKeywords.TOP));
assertTrue(cssProperty.supportsKeyword(VerticalAlignKeywords.BOTTOM));
// It should not have super or sub.
assertFalse(cssProperty.supportsKeyword(VerticalAlignKeywords.SUPER));
assertFalse(cssProperty.supportsKeyword(VerticalAlignKeywords.SUB));
}