From: Artur Signell Date: Sat, 11 Jul 2015 18:12:39 +0000 (+0300) Subject: Restrict old IE fix to IE <= 10 (#17002) X-Git-Tag: 7.5.3~4 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=637d0d01880ad73d3661fc07eead999d07c8cf44;p=vaadin-framework.git Restrict old IE fix to IE <= 10 (#17002) Change-Id: I84b7d654f1a62aad623055033ee0666ad950b805 --- diff --git a/client/src/com/vaadin/client/ui/VFilterSelect.java b/client/src/com/vaadin/client/ui/VFilterSelect.java index 22eef57901..d756c88f79 100644 --- a/client/src/com/vaadin/client/ui/VFilterSelect.java +++ b/client/src/com/vaadin/client/ui/VFilterSelect.java @@ -612,7 +612,8 @@ public class VFilterSelect extends Composite implements Field, KeyDownHandler, menuFirstChild.getStyle().setWidth(100, Unit.PCT); } - if (BrowserInfo.get().isIE()) { + if (BrowserInfo.get().isIE() + && BrowserInfo.get().getBrowserMajorVersion() < 11) { // Must take margin,border,padding manually into account for // menu element as we measure the element child and set width to // the element parent