aboutsummaryrefslogtreecommitdiffstats
path: root/test/cssTest.cpp
Commit message (Collapse)AuthorAgeFilesLines
* remove tests that don't test anythingstasoid2022-11-271-107/+0
|
* fix cssTest.cppstasoid2022-11-161-358/+51
|
* more wchar cleanupstasoid2022-11-071-279/+278
|
* parse_styles optimization: use string_id for CSS property namesstasoid2022-11-071-80/+80
| | | | decreases parse_styles time by 37% (750 ms -> 468 ms on Obama wiki on my machine)
* Remove litehtml::context, replace master.css -> master_css.h and make ↵stasoid2022-10-301-2/+1
| | | | | | document::createFromString receive master/user css as strings closes issue #219
* remove wchar supportstasoid2022-10-211-115/+116
| | | | closes issue #217
* fix teststasoid2022-03-191-83/+83
|
* Disable test that only fails on GitHub ActionsJohn Poole2021-09-251-1/+1
| | | | | | CSSTest.SelectorParse fails on GitHub Actions but not on Travis or on any developer systems. Disable the test until we can determine what's going on here.
* Convert litehtml tests to use GoogleTestJohn Poole2021-08-251-88/+456
| | | | | | | | | | | | | | GoogleTest provides a number of nice features (such as autodiscovery) that make writing and running tests easier and less tedious. This patch converts the litehtml tests over to use GoogleTest. Note that the conversion is mostly mechanical -- no attempt has been made to make the tests "idiomatic" GoogleTests. Most of the CMake changes are based on code from the GoogleTest documentation, specifically the "Quickstart: Building with CMake" guide: https://google.github.io/googletest/quickstart-cmake.html
* added tests, optimized text parsing for <script>Sky Morey2019-08-181-189/+35
|
* Added testingSky Morey2019-08-171-0/+365