You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BackgroundColorThemeTestUI.java 510B

12345678910111213141516171819
  1. package com.vaadin.tests.components.uitest;
  2. public class BackgroundColorThemeTestUI extends ThemeTestUI {
  3. @Override
  4. protected boolean showAdditionalControlFields() {
  5. return true;
  6. }
  7. @Override
  8. protected Integer getTicketNumber() {
  9. return 11671;
  10. }
  11. @Override
  12. protected String getTestDescription() {
  13. return super.getTestDescription()
  14. + "<br>Read-only styles shouldn't override the transparent background of borderless components.";
  15. }
  16. }