summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources
Commit message (Collapse)AuthorAgeFilesLines
* Remove theme-compiler and replace with external vaadin-sass-compilerJonatan Kronqvist2014-03-311707-21735/+0
| | | | | | | | | | | | | * Moves CompileTheme from the theme-compiler to buildhelpers * Refactors CompileTheme to get the Vaadin version on the command line instead of using the Version class found in vaadin-shared * Refactors build scripts to pass the version number on the command line when running CompileTheme * Removes the theme-compiler module/project/whatchamacallit * Replaces the theme-compiler dependency with vaadin-sass-compiler 0.9.0 from maven Change-Id: I4f98d15b60e18a826bf264eb55d12b3e736e8e54
* Remove an empty line from a Sass test case.Mika Murtojarvi2014-03-061-1/+1
| | | | | | | The blank line caused a test failure, because some Sass tests are currently very strict about the expected output. Change-Id: Id01818eca1da3310557c86a4aeb09f7dc23bcf70
* Function "percentage" is implemented (#12771).denisanisimov2014-02-132-2/+6
| | | Change-Id: I0a2e3d31f60bd085d619b603bd229dba902ff001
* Avoid error in rgb() function if variables are used (#12752).denisanisimov2014-02-132-0/+5
| | | Change-Id: Id51ffef257c193900026a4644eb99dbd3926c668
* Move passing Sass tests from sasslangbroken to sasslang.Mika Murtojarvi2014-02-1212-0/+0
| | | | Change-Id: Iac66afbcc2e0e1bdeb417bfe8292f57e4d2287df
* Merge commit '915c37b569600a8d37db2a0800a30474da49e255' into masterJonatan Kronqvist2014-02-102-0/+24
|\ | | | | | | | | | | | | | | | | 915c37b Sass compiler now treats null-valued variables as unassigned (#12430). Conflicts: theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java Change-Id: If9789f8d0638377d27e77ec4be0fdf0f96e4b1af
| * Sass compiler now treats null-valued variables as unassigned (#12430).Mika Murtojarvi2014-02-062-0/+24
| | | | | | | | Change-Id: I13a11b4c7d148646ad3eb5492d9dd8d736e63f39
* | Merge commit '37919d14b7509b1c8d8495a3e334d50a913bfe6f' into masterJonatan Kronqvist2014-02-0758-0/+0
|\| | | | | | | | | | | | | Conflicts: theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java Change-Id: I9e169d9c04998f9e7dc05953d51cd76348dd810c
| * For @-directives, infer missing semicolon before closing brace (#12792)joheriks2013-11-2862-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Parser now accepts the following (note missing semicolon after last @extend-directive): xyzzy { @extend foo ; @extend bar } As a consequence, moved 31 sasslang-cases from broken to fixed. Moved two tests from fixed to broken (34, 95, previously passed accidentally) Change-Id: I8968074abd79dec71be762ed926cc6f37fbcaa99
| * Move a sass test that no longer fails.Mika Murtojarvi2013-11-272-0/+0
| | | | | | | | Change-Id: Ic83330cbea688be1c30aa89cad9524016617be8d
| * Move working sass tests from sasslangbroken to sasslang.Mika Murtojarvi2013-11-274-0/+0
| | | | | | | | Change-Id: Ic503021884fd52b650f29df221cef3e69e8ef570
* | Merge commit 'a705f8cc3fd5804e828b6647510795dbbb99eaa3' intoMika Murtojarvi2014-02-062-0/+0
|\| | | | | | | | | | | master Change-Id: I163cb7f15a35bc44d9840afa3f35d059e7bf42ee
| * Mixins now accept an empty argument list in parenthesesMika Murtojarvi2013-11-262-0/+43
| | | | | | | | | | | | (#12992). Change-Id: If2484e2f289aa7039984df0d9a73ba595117462c
* | Move Sass test files to the correct locations.Mika Murtojarvi2014-02-062-0/+0
| | | | | | | | Change-Id: Ie2c8b77420ea1f20471093479d57fcc2f484685c
* | Parser recognizes @content directive inside @media (#13279).denisanisimov2014-02-032-0/+32
| | | | | | | | Change-Id: I7fd8868233e9378aaf3725bb202d4b34f3f27713
* | Fix false-negative sasslangbroken tests (#13275).denisanisimov2014-01-304-0/+0
| | | | | | | | Change-Id: I184418667c1de63cbdbc26d75f2268415a8f06f9
* | Merge changes from origin/7.1Artur Signell2013-11-112-0/+26
|\| | | | | | | | | | | | | | | | | | | 30e9b7c Add a test for @mixin { @font-face {...} } (#11649) 0a2cf2c Prevent showing "Session Expired" notification if navigating away (#12298) 8efc385 Fixes NPE in TreeTable.setContainerDS(null) (#12928) 23815e6 Remove broken JSch check c308d8a Fixes double scrollbar issue in browserframes (#11780) Fixed by adding font-size 0 to the base theme. Change-Id: I64ae167e8e6b61205718998b80d534fb2cf0cb3d
| * Add a test for @mixin { @font-face {...} } (#11649)joheriks2013-11-082-0/+26
| | | | | | | | Change-Id: I7d089ea14b169481f943a1f44058ad47f9b8179a
* | Merge commit 'a3aa6cc93e22fd6ff37ea6f3aa91810cab2aa624'Artur Signell2013-11-114-0/+32
|\| | | | | | | | | | | | | | | Conflicts: theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java theme-compiler/src/com/vaadin/sass/internal/parser/Parser.jj Change-Id: I3421c2d5c114765e924d7847cee46ebd370dfca6
| * Fixes for sass compiler, handling mixins (#11288).Mika Murtojarvi2013-11-084-0/+32
| | | | | | | | | | | | | | | | Keyframe selectors can now be comma-separated lists, interpolation unquotes a quoted string and the parameters of an @include are no longer lost. Change-Id: I2622aca7471adc8004371affbb803d850e801307
* | Merge commit 'a2f255448e6a755892a97b7df9fc2b65efc5dccc'Artur Signell2013-11-112-0/+9
|\| | | | | | | | | | | | | Conflicts: theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java Change-Id: I6b295f9225785eb6bf07bf2cd2d5c1c3bc181afc
| * Allow @font-face and general @-directives inside @if-blocks (#11649)joheriks2013-11-052-0/+9
| | | | | | | | Change-Id: Ifa844e7bf8add886792b39c016cc2c9aa3d94b0c
* | Merge commit '9d84c091714f01e0088fab2202c10b505e78a607'Artur Signell2013-11-112-0/+6
|\| | | | | | | | | | | | | Conflicts: theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java Change-Id: Ie23f14975f693c666d932d7ca1c07c980a5ba08a
| * Parser stripped minus of negative numbers with unknown units (#12811)joheriks2013-10-282-0/+6
| | | | | | | | Change-Id: I8964b1732f867cb3c5aa5859d12e94a5978adece
* | A fix for handling nested parentheses in sass (#12833)Mika Murtojarvi2013-11-071-0/+3
| | | | | | | | | | | | | | | | | | Selectors such as *:not(:lang(fr)) are now allowed. Nested parentheses were identified as the cause of the problem. Now skipping is done to the matching right parenthesis instead of the first right parenthesis. Change-Id: I2e83cac14796b739c6b6550642417b12dab752f2
* | Sass, the handling of selectors containing multiple #-symbols (#12832)Mika Murtojarvi2013-11-061-0/+9
| | | | | | | | | | | | | | | | After the first commit, a test case has been downloaded and added to w3ctests. The indentation of a production was also changed in an attempt to more clearly express its meaning. Change-Id: I32356d1fcbafada982a5d3e22f0821e554cc6c8a
* | Import W3C CSS tests to validate CSS parsing (#12735)joheriks2013-10-30728-0/+3956
| | | | | | | | | | | | | | | | | | | | Downloaded W3C conformance tests for CSS 2.1 and CSS 3 (selectors), extracted all CSS (style tags, inline styles, and linked stylesheets), Since each CSS is valid SCSS, the parser should accept them. Since these are browser tests, some include CSS fragments which are intentionally malformed. These are excluded via explicit exclusion lists. Change-Id: Ib3347e1c559908f3bdd12817e55985e85f0009a2
* | Merge changes from origin/7.1Leif Åstrand2013-10-2215-4/+92
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c7ae45c Validate that the connector is enabled before triggering actions for it (#12743) ce89a75 Created constants for tested browser versions (#12786) f9ea9b3 Allow running tests locally by overriding runLocally() (#12786) e70ba25 Added liferay module for building liferay.zip #12748 7c12694 Add sub directory support to sass test scanner (#12790) 39fdf66 Handle numbers in the same way if they do not have a unit (#12732) 6155d61 Disable fallback in a way compatible with Atmosphere JS 2.0.3 (#12241) f401595 Test for pushing large chunks of data (#12567) d41967d Skip compilation of TB2 tests if tests.tb2.skip is set 6c1ba81 Reverted button click() logic check (#12743) 779c8a0 Disable automated testing on Opera until issues are resolved (#12487, #12367, #12800) 962c1c3 Fix compilation error 7ee11a7 Remove unused test super class (#12786) a4211dc Resolve concurrency issue in running TB3 tests 20c28aa Fixed javadoc 0d36896 Add more hax to make test work with new Atmosphere JS (#12241) ed50200 Fix serialization issue (#12703) dd51b7f Added more exception handling to PushHandler (#12578, #11882) 6f76840 Sass variables can now start with underscore (#12716) ab5b20c Ticket #12727 - Panels get unnecessary scroll bars in WebKit when content is 100% wide. 361ad17 Fixed focus issue in TableMoveFocusWithSelectionTest (#12540) ee809e5 Revert broken fix and test (#12446) Change-Id: I71b6e3c2dc6b02845794df0934ba807d7ccac784
| * Handle numbers in the same way if they do not have a unit (#12732)Artur Signell2013-10-168-0/+88
| | | | | | | | Change-Id: Ic9dba337ffb209bf73ab427fa3a39e542e645c08
| * Add sub directory support to sass test scanner (#12790)Artur Signell2013-10-167-4/+4
| | | | | | | | | | | | | | Exclude partial scss files (starting with _) Add new lines to normalized css for easier comparison Change-Id: I2bfb796b293cb0b578c3c5c56aacffe7c1514b02
* | Merge changes from origin/7.1Henrik Paul2013-10-182-0/+11
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 377d49e Allow configuring deployment port for TB3 tests 6779857 Updatet servlet tests to follow the same *Test naming convention e1c38bf Avoid obsolete calendar panel renderings to avoid various NPEs. (#12504,#12667) 63f10ec Fixed compilation error in TB3 test 3e593b0 Focus selected row in Table #12540 3c842b7 added small pause to make test pass 1b7e40d Only fetch rows if there are some (#11189) f595d05 Make the various Writers member fields instead of local variables (#12446) 4cb304d Converted broken test to TB3 2aa2fdc Handle ClientMethodInvocation serialization with JSONArray as parameter (#12532) 1449425 Also hide shim iframe of VOverlay on setVisible(false) (#12731) 25fc2f2 Fix whitespace after including a mixin (#12715) c29ca5e Update to atmosphere javascript 2.0.3-vaadin1 (#12241, #12127) f75164f Disable unit cache to avoid compilation issues when switching between branches 6a99730 Allow skipping TB2/TB3 tests using tests.tb2/tb3.skip Change-Id: I5a92798e66575c2cfd1d3f761a5f00af7e83dc64
| * Fix whitespace after including a mixin (#12715)Mika Murtojarvi2013-10-142-0/+11
| | | | | | | | Change-Id: I9b25968cc140a9443820a26eadb6b5a1507ad7ec
* | Compass test cases (#11776)Artur Signell2013-09-2617-0/+132
|/ | | | Change-Id: Icf460eec606196bcff9b329fe7055bce6ed82c5f
* Added controlDirective to ifContentStatement. Fixes ticket #12105.Juho Nurminen2013-08-282-0/+26
| | | | Change-Id: I48988c3f3451ff9fa86148f4bb923a2ebdb6c482
* #11638: Ending an imported SCSS file with a comment causes an error inHaijian Wang2013-07-013-0/+9
| | | | | | the Sass Change-Id: Ib498f68caa7e87e2d9a21b29c9bfb2f30f35c701
* Support nested SASS imports (#11909)Henri Sara2013-05-282-0/+8
| | | | Change-Id: I05f88e398e7e28f476d8c0d50b7f9ac54a7cba0b
* Merge commit 'a52ceb96590333' into 7.1Leif Åstrand2013-05-176-0/+149
|\ | | | | | | | | | | | | Conflicts: theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java Change-Id: I049a08a5d129b8072bf91554ca0eab0d44e537e3
| * Merge commit 'feb9a8c3510afc76c079fafcd9e507205bde139c'Artur Signell2013-04-234-0/+34
| |\ | | | | | | | | | | | | | | | | | | | | | Conflicts: WebContent/release-notes.html theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java Change-Id: Iad9ee95b2f399ff93f0e426a0810b18d923f8ff6
| * \ Merge remote-tracking branch 'origin/7.0'John Ahlroos2013-03-0112-0/+104
| |\ \ | | | | | | | | | | | | Change-Id: Ifdc095169c31731cb013727f14d92839ecc775db
| * | | support @content directive for Sass compiler (Ticket #10207)Haijian Wang2013-02-284-0/+74
| | | | | | | | | | | | | | | | Change-Id: I8037e1d64afd1ce2044d89d3bdcf408f6162727c
| * | | support arithmetics in the SCSS compiler (#9354)Haijian Wang2013-02-272-0/+75
| | | | | | | | | | | | | | | | Change-Id: Ieb7834fb12cdba5c0794a26de20b3c8c2d509642
* | | | Support non-trivial SASS media selectors (#11455)Henri Sara2013-05-146-0/+32
| |_|/ |/| | | | | | | | | | | | | | | | | This change adds support for media selectors with a query that consist of more than just a single word. Change-Id: Id6a09de8e88984ad052321ae93ffa2e7c2ba1c04
* | | Support "to" in CSS function parameters (#11309)Henri Sara2013-04-184-0/+34
| |/ |/| | | | | | | | | This change also relaxes whitespace checking in SCSS tests slightly. Change-Id: I2ad5087e7d77ddd0473df47d202c6dd3e228181f
* | Fixed several problems related to @extend directive (Ticket #10976)Haijian Wang2013-02-2612-0/+104
|/ | | | Change-Id: I5e409856601aa514965319453c11946028b08dda
* Selector now can begin with a combinator. (Ticket #10754)Haijian Wang2013-02-194-0/+18
| | | | Change-Id: Id2f1a006e4caaf790f573ee823fcc41312f30261
* more than expected params in mixin throws IOB exception. (Ticket #10988)Haijian Wang2013-02-191-0/+4
| | | | Change-Id: I6451c94a4f733b002165983f92c8577dac4904f6
* Added back previous removed test due to #9870 to pass test (TicketHaijian Wang2013-02-141-0/+1
| | | | | | #9870) Change-Id: I8d8210689078cdb0408c23be621ac279080dc9bf
* SASS fails to parse CSS expression function. (Ticket #9870)Haijian Wang2013-02-142-0/+6
| | | | Change-Id: Iea5f3b846a033e218c384dc58e5e045e524de83f
* Merge "Sass replaces variables based on substring matches. (Tickets #10508, ↵Henri Sara2013-02-134-0/+30
|\ | | | | | | #10730)" into 7.0
| * Sass replaces variables based on substring matches. (Tickets #10508,Haijian Wang2013-02-134-0/+30
| | | | | | | | | | | | #10730) Change-Id: I7d3c5a74055e28e0e22fe6e496209d7d3c42b4af