diff options
author | Aleksi Hietanen <aleksi@vaadin.com> | 2016-12-16 10:41:51 +0200 |
---|---|---|
committer | Denis <denis@vaadin.com> | 2016-12-16 10:41:51 +0200 |
commit | 8605e5f9ac3a4c477ac2a7d004004398bd99d260 (patch) | |
tree | 0704488ee4545b2ec04daafd22326fd31807758d | |
parent | 80a406c075ecdc91c1c439a04796e72a7642bf23 (diff) | |
download | vaadin-framework-8605e5f9ac3a4c477ac2a7d004004398bd99d260.tar.gz vaadin-framework-8605e5f9ac3a4c477ac2a7d004004398bd99d260.zip |
Fix test failures in alpha10 (#8013)
* Fix context menu missing box-shadow for Runo on Chrome (#7966)
Change-Id: I318761527a695c741f52b4c18e9f8ea943f89017
* Update Chrome version in VerifyBrowserVersionTest
-rw-r--r-- | compatibility-themes/src/main/themes/VAADIN/themes/runo/common/common.scss | 2 | ||||
-rw-r--r-- | uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compatibility-themes/src/main/themes/VAADIN/themes/runo/common/common.scss b/compatibility-themes/src/main/themes/VAADIN/themes/runo/common/common.scss index 207660c08e..e644c9805e 100644 --- a/compatibility-themes/src/main/themes/VAADIN/themes/runo/common/common.scss +++ b/compatibility-themes/src/main/themes/VAADIN/themes/runo/common/common.scss @@ -84,7 +84,7 @@ margin: 1px 0 4px 0; } .v-contextmenu { - background: #e9eced url(../tabsheet/img/tab-bg.png); + background: #e9eced url(../tabsheet/img/tab-bg.png) content-box; font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif; background-color: #f6f7f7; color: #464f52; diff --git a/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java b/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java index 5974dac6d7..ddc07aa315 100644 --- a/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java +++ b/uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java @@ -40,7 +40,7 @@ public class VerifyBrowserVersionTest extends MultiBrowserTest { // Chrome version does not necessarily match the desired version // because of auto updates... browserIdentifier = getExpectedUserAgentString( - getDesiredCapabilities()) + "54"; + getDesiredCapabilities()) + "55"; } else { browserIdentifier = getExpectedUserAgentString(desiredCapabilities) + desiredCapabilities.getVersion(); |