summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Return border sizes from border methods in MeasuredSize (#13494)Maciej Przepióra2014-03-251-4/+4
| | | | | | | Back ported from master Merge: no Change-Id: I9eee3cb897fcb00beb2b2877dd98337623e2cf5b
* Remove flaky tests which does not give much additional infoArtur Signell2014-03-251-16/+0
| | | | Change-Id: I63141cac25b612805458cae570917f757106251a
* Esc now closes the date popup even if focused on the time selectors (#12314)Teemu Pöntelin2014-03-243-10/+37
| | | | Change-Id: I68bc7922074c8c03957fbffce8a3d453726e8c1a
* Ignore backspace events in modal windows (#13180)Felype Santiago Ferreira2014-03-243-0/+179
| | | | Change-Id: Idf3ec4bc80bd015c546000e99cb6ff16e79ca5a8
* Remove unnecessary Webkit scrollbar testTeemu Suo-Anttila2014-03-202-108/+0
| | | | Change-Id: I58c8216b35355c3e84ab0b31300988a0957c1b85
* Fix invalid copyright headerLeif Åstrand2014-03-201-1/+13
| | | | Change-Id: I8957eeb8c087a7a3f6aa8b417eb52689e6c28025
* Made TabSheet tabs always become visible when focused (#12343)Juho Nurminen2014-03-193-15/+116
| | | | Change-Id: I8f840bf4e45e257454d5e16c7b43f63858fd15d8
* Revert "Preventing premature start of drag due to Chrome move event #13381"Henri Sara2014-03-191-13/+6
| | | | | | This reverts commit 7112abe944259a615e26342de17d0302ddec3562. Change-Id: I2bc231ec20c27b508570c6358fb2d8128beb2735
* Pressing ESC now closes the DateField popup when using month or year ↵Teemu Pöntelin2014-03-183-0/+126
| | | | | | resolutions. (#12317) Change-Id: Icf7b8da00e80ea4dc4843bcd28b005b5e91b866f
* Refactored JSR286 portlet test.Sauli Tähkäpää2014-03-181-9/+10
| | | | Change-Id: I1830ebca5e23890636ade0bab2eca2cefe6ee1ac
* Added User-Agent and Screen Width + Height labels to portlet test.Sauli Tähkäpää2014-03-181-0/+17
| | | | Change-Id: Ic51e0fde622b3075c6956b4c6f3700fbb281c7ba
* Merged IntegrationTestRunner into TB3RunnerArtur Signell2014-03-174-72/+72
| | | | Change-Id: I9e14a75b8446623d8995ee907bd95a1b2452cefd
* Fixes a memory leak on IE8 in LayoutManagerIE8 (#12688)Pekka Hyvönen2014-03-146-2/+268
| | | | Change-Id: Ieae3b1d82e92fadf5ab517c1c878fc82bcc0ecbd
* Eliminate .v-caption memory leak (#13346)Henri Sara2014-03-143-2/+131
| | | | Change-Id: I6577dabaaf5d9fa4c73158d3391dfcd28dd0629e
* Test for streaming reconnect issue (#13435)Artur Signell2014-03-141-0/+75
| | | | Change-Id: Ibf04105a1ffe2c22726d628a0aba4668569d45d2
* Fix for width issue of TabSheet (#12805)Teemu Pöntelin2014-03-143-3/+147
| | | | | | | | | | Width of v-tabsheet-tabcontainer was set by copying the width from the ComponentConnector. This produced an incorrect result when a relative width (other than 100%) was used. Fixed by assigning the width to 100% when the TabSheet has a defined width. Change-Id: I7f128f87406e6e00ceda9ee6e75dcc5539e283b6
* Fixed "EEE" in DateField's date pattern (#13443)Teemu Pöntelin2014-03-143-1/+96
| | | | Change-Id: Ib82d901fbf65dc39c06b117c68bb0191f0fd8e68
* Improve error message when reusing UI instance (#13457)Leif Åstrand2014-03-131-1/+12
| | | | Change-Id: I49ec1e837a1a2a04dfadef5fd5fb5b6fd10ffcbc
* reduce frequency of session locking and StreamingProgressEvents (#13155)Fabian Lange2014-03-131-13/+36
| | | | | | | | | | | | This change introduces throttling of streaming progress events. Before a event was fired once a buffer was filled. However as the buffer is only 4kb in size, fast uploads would trigger massive amounts of events. This change is backwards incompatible on a logical level. Before this change, a listener would get contentLength/4kb events, while after this change the amount is limited to one progress event per 500ms. Change-Id: I5da092ec4488971b8554b68b44c346057bfcc0e0
* Preventing premature start of drag due to Chrome move event #13381Fabian Lange2014-03-131-6/+13
| | | | | | | | | | | | | | | | | | The drag only actually starts when the mouse move or touch move event is more than 3 pixel away. The purpose is twofold: a) it fixes the glitchy behaviour of Chrome which for some reason sometimes fires a move directly after the mousedown, which starts a drag immediately. b) it helps people with shaky hands or imprecise hardware, why might not want to drag but to select but slightly move the pointer. Some frameworks opted to make the distance configurable. Due to sub pixels (which might be the cause for a) in the first place), a distance of 1 or 2 pixel is not enough. Experiments showed that unaware users did not notice that 3 pixels movement are required for the drag to actually start (the ghost has already a delay of 300ms) Change-Id: I71b50b72486344a7dbe4ed927b34b1f8fab0db20
* Fixed trailing slash trimming in VaadinPortletService.Sauli Tähkäpää2014-03-137-12/+121
| | | | Change-Id: Ia9f6230219adfb1fcb29b88ad819e3209770e1fc
* Class AbstractTransactionalQuery should be public (#12285)Edoardo Vacchi2014-03-121-1/+1
| | | | | | | | | | | | | | | AbstractTransactionalQuery was not visible outside its package (default visibility). Added `public`. Making this class public avoids lots of boilerplate code when making alternate implementations of a QueryDelegate. A standard TableQuery does a lot of introspection on the DB schema. If the schema is known beforehand, alternate implementations may specify this information explicitly, and inherit from AbstractTransactionalQuery to reuse part of the implementation. Change-Id: I7d6b399ed7c755941ee9be7931a2ba80e812b5ab
* Added server launch wait to TB2 and TB3 test targets.Sauli Tähkäpää2014-03-121-0/+2
| | | | Change-Id: Iaa9feeedd1a2dbc879617c7b0dfedfeff36a7ba5
* Make ExcludeFromSuite annotation Runtime and InheritedTeemu Suo-Anttila2014-03-112-5/+10
| | | | Change-Id: I35169d1560ae5e1b9a057d6350de14947f6155ae
* Fixed nojavadoc parameter on "all" build.Sauli Tähkäpää2014-03-101-9/+11
| | | | Change-Id: I336cbee8bf33591552034c1cdf29d34fc49e3c43
* Added nojavadoc parameter to "all" build script.Sauli Tähkäpää2014-03-101-29/+35
| | | | Change-Id: Id83983e7fd81612354c6b15037a6749ba3dda55a
* Do not fail assertion if re-setting the same lock (#13440)Artur Signell2014-03-101-2/+7
| | | | Change-Id: I2e7e9dcf8739a04583d8e42a86a1fede36011813
* Revert "Fixes a memory leak on IE8 in LayoutManagerIE8 (#12688)"Henri Sara2014-03-106-270/+3
| | | | | | This reverts commit 024692835d1e2af1a4053821959f03f8d5eb4fcb. Change-Id: I19cf6ee66a21f7eb07d0f1fd8b9698ae88454700
* Added nojavadoc parameter, test-server, test-tb2, test-tb3 targets.Sauli Tähkäpää2014-03-102-17/+71
| | | | Change-Id: I3b0f4ebc247d0cdbf5d8cdd78c3088207e2f8e45
* Fix TabSheet caption icon alignment on Chrome and Safari (#13077)Teemu Suo-Anttila2014-03-061-1/+7
| | | | Change-Id: I8cc0eb2796a328c1996417014833020319428b61
* Revert "Fix displaced TabSheet caption icon in Chrome"Henri Sara2014-03-061-1/+0
| | | | | | This reverts commit 46675661cd95f61e3173f33e7dcfeb32bc377f41. Change-Id: I8813e162aad46bff6f1424d0dec54342b53a45b5
* Update to Atmosphere 1.0.18.vaadin3 to fix regressions (#13299).Artur Signell2014-03-053-3/+3
| | | | Change-Id: I028e29c4d39a032dd2a3cf24dff111ee52e50f44
* Fixes a memory leak on IE8 in LayoutManagerIE8 (#12688)Pekka Hyvönen2014-03-056-3/+270
| | | | Change-Id: I9b2d2ff9513a9063de292fdf1e14b227e0ff4d76
* Fix displaced TabSheet caption icon in ChromeTeemu Suo-Anttila2014-03-041-0/+1
| | | | Change-Id: Id3183b735ae911374d1a8821cd67b5abd1c094d5
* Refactored VerifyJreVersion test to TB3.Sauli Tähkäpää2014-03-043-27/+42
| | | | Change-Id: I7283685ee61a0a68563aeb39633090b376c57380
* Refactored TB3 test ip address whitelisting.Sauli Tähkäpää2014-03-041-10/+9
| | | | Change-Id: I7f9aae8ed3ea163b19d92caa652313dfc2c4a159
* Add javadoc for @DelegateToWidget (#10980)Leif Åstrand2014-03-041-0/+59
| | | | Change-Id: I15e731058b615ef478cbe27b465ffdb72f0609b1
* Fix fallback from websocket when behind proxy (#13299)Artur Signell2014-03-043-3/+3
| | | | Change-Id: Id12cb97816afde4363caea20ff30376ff9cdb173
* Extracted integration-test target.Sauli Tähkäpää2014-03-031-5/+9
| | | | Change-Id: I08722f298d295365c48e00ee04d40541b3a71de8
* Workaround Streaming Push unreliabilities (#13415)Teemu Suo-Anttila2014-03-033-10/+23
| | | | Change-Id: I5e946b365e22e71a0c13606fcd159d1ce7c82925
* Re-try opening ssh tunnel if it fails the first time(s)Artur Signell2014-03-031-2/+17
| | | | Change-Id: I653db3a818435c023f0bbd8015d2bd1a35ed4e34
* Update TestBench3 version for UI testingTeemu Suo-Anttila2014-02-281-1/+1
| | | | Change-Id: I2e0a8fd2590e6f9c25825ccc0dc4c6f3d147e06f
* Use more worker threads for widgetset compilationHenri Sara2014-02-272-2/+2
| | | | Change-Id: Ib7ea54e7a06516acbd9cf3dd08dbbacaac2030f9
* Remove tooltip that's causing CalendarAcrionEventSourceTest failuresTeemu Suo-Anttila2014-02-271-3/+2
| | | | | | | This said tooltip gets in front of the context menu and native events actually clicks on the tooltip instead of the context menu item. Change-Id: I6519ba98351a5ad03ccc35c29b85a831e3026325
* Use Chrome 33 for testingHenri Sara2014-02-272-2/+2
| | | | Change-Id: I6362097ff836c10b7001c5fd8acd8adf91a94b2f
* Fix broken TableScrollingWithSQLContainer test UITeemu Suo-Anttila2014-02-251-7/+32
| | | | Change-Id: I67bcb7a473d147c46e24cb3c116fd9115a3bda6b
* Remove applet test which does not work reliablyArtur Signell2014-02-251-36/+0
| | | | | | | | As long as nobody is constantly updating the java version on the test cluster and additionally ensures that no manual interaction is needed for Java applets to run, this test is not useful Change-Id: Ic9b3e190567e8949bbb514d5fedefc3c720402e7
* Fix SQLContainer paging and caching issue (#11199)Teemu Suo-Anttila2014-02-253-79/+210
| | | | Change-Id: I884c0f0a27a124a49698b141ac63c93950df428d
* Enable on-the-fly SASS compilation in OSGi (#10307)Johannes Dahlström2014-02-242-1/+2
| | | | | | | * Add proper Import-Package directives to theme-compiler * Require-Bundle theme-compiler in server bundle Change-Id: I7dec20c04eac92271b8adf0b1e23c573f1b06a29
* Do not prevent deployment if Atmosphere init fails (#13199)Artur Signell2014-02-222-5/+18
| | | | Change-Id: I07e23bcdea6b2bd23a37651a804a537690fb1311