summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Media Queries: Parse only needs propstrings out of css_language.Michael Drake2019-03-103-54/+62
|
* Media Queries: Update stylesheet import for media query lists.Michael Drake2019-03-101-2/+4
|
* Media Queries: Update rule_good_for_media for new mq struct.Michael Drake2019-03-101-6/+44
| | | | | Doesn't currently match media query conditions, only the media type.
* Media Queries: Store type as value, rather than lwc_string.Michael Drake2019-03-102-4/+60
| | | | | | Otherwise we need to convert it in selection, and select/ doesn't have access to the css_language interned strings table.
* Media Queries: Fix range parsing.Michael Drake2019-03-101-1/+1
|
* Media Queries: Add error-path resource cleanup.Michael Drake2019-03-101-28/+16
|
* Media Queries: Add destruction functions.Michael Drake2019-03-102-1/+58
|
* Media Queries: Implement parsing <general-enclosed>.Michael Drake2019-03-101-1/+98
|
* Media Queries: Squash invalid use of unused variable warning.Michael Drake2019-03-101-1/+2
| | | | error: ‘last’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
* Media Queries: Add forward declaration of mq_parse_condition.Michael Drake2019-03-101-0/+4
|
* Media Queries: mq_parse_ratio doesn't need language object.Michael Drake2019-03-101-5/+5
|
* Media Queries: Minor fixes.Michael Drake2019-03-101-4/+5
|
* Strings: Add 'infinite'.Michael Drake2019-03-102-1/+2
|
* Media Queries: Include string.h for memset.Michael Drake2019-03-101-0/+2
|
* Media Queries: Include stylesheet.h for css_style.Michael Drake2019-03-101-0/+1
|
* Media Queries: remainder of parserJohn-Mark Bell2019-03-102-80/+351
|
* Propstrings: add AND, ONLY, ORJohn-Mark Bell2019-03-102-1/+4
|
* Media Queries: parse featuresJohn-Mark Bell2019-03-102-4/+452
|
* Units: parse new unit namesJohn-Mark Bell2019-03-102-1/+15
|
* Media Queries: sort out object lifetimesJohn-Mark Bell2019-03-103-18/+18
|
* Media Queries: datastructures and plumbing.John-Mark Bell2019-03-106-106/+231
| | | | | | | | | | | | | No parse implementation as yet. Selection hasn't been updated, either. One item of note in that area is that a client currently provides the media for top-level sheets being added to a selection context. This probably needs to change to providing a lwc_string containing the verbatim media query from the containing document's import mechanism. That way, the internal representation of media queries can remain opaque to clients.
* Select generator: Squash undefined behaviour in generated code.Michael Drake2018-07-284-603/+621
| | | | | | | uint8_t is promoted to int instead of unsigned, so it can't hold the values we try to store. Reran `make select_generator` to update generated code.
* Parsing: Fix undefined shift in css__parse_hash_colour.Michael Drake2018-07-281-2/+2
| | | | | | | | | | uint a = 0xff; a << 24 `a` gets promoted to int, which can't store the value. src/parse/properties/utils.c:655:16: runtime error: left shift of 255 by 24 places cannot be represented in type 'int' src/parse/properties/utils.c:889:15: runtime error: left shift of 255 by 24 places cannot be represented in type 'int'
* css_fixed: Avoid undefined shift.Michael Drake2018-07-281-1/+1
| | | | | | From undefined behaviour sanitizer: src/utils/utils.c:130:18: runtime error: left shift of negative value -1
* Selection: Unify rule good for media helper.Michael Drake2018-07-273-62/+54
|
* Build: Commit generated computed style access source code.Michael Drake2018-01-065-3/+5247
| | | | | | | | This means python3 is not required to build libcss. To re-generate the compute style access code, e.g. when adding new CSS properties, developers must run `make select_generator` and commit the updated generated source code.
* Selection: Autogenerated propset: Fix release of previous strings.Michael Drake2017-11-251-2/+2
|
* Selection: Content prop, use CSS_CONTENT_SET as condition for generator.Michael Drake2017-11-251-1/+1
|
* Select: Bug fixes in the generator.lcneves/select-autogenLucas Neves2017-11-192-18/+17
|
* Add support for new length units.Lucas Neves2017-11-133-0/+52
|
* Select: include autogenerated content in header files.Lucas Neves2017-11-133-5261/+3
|
* Select: autogenerator for computed.h, propset.h and propget.h.Lucas Neves2017-11-136-0/+1273
|
* Squash GCC7 -Wimplicit-fallthrough warnings.Michael Drake2017-10-222-4/+4
|
* Selection: Logic for the flexbox properties.Lucas Neves2017-10-2116-5/+751
|
* Selection: Add support for the flexbox properties.Lucas Neves2017-10-215-48/+640
|
* Parsing: Add support for parsing the flexbox properties.Lucas Neves2017-10-219-30/+492
|
* Add codes to flexbox properties.Lucas Neves2017-10-211-4/+74
|
* Strip trailing whitespace.Michael Drake2017-09-04167-1444/+1444
|
* Fix: Read beyond allocated memory when removing sheet from selection context.Michael Drake2017-06-271-2/+2
| | | | Thanks to 'effin' on #netsurf.
* Interface: Add public API for getting box-sizing from computed style.Michael Drake2017-04-271-0/+5
|
* Selection: Add support for the CSS3 box-sizing property.Michael Drake2017-04-274-15/+52
|
* Parsing: Add support for parsing the CSS3 box-sizing property.Michael Drake2017-04-2710-4/+92
|
* Select: Squash error-path leak.Michael Drake2017-02-031-1/+0
| | | | | If we allocated a font-face array previously, and failed to extend it, then we failed to free it on the error path.
* Selection: Inline styles prevent computed style sharing.Michael Drake2016-11-292-12/+27
|
* Selection: Try all previous sibling nodes for sharable styles.Michael Drake2016-11-201-7/+8
| | | | Previously we would only consider the first candidate.
* Selection: Turn off style sharing debug output.Michael Drake2016-11-191-1/+0
|
* Enable sharing where pseudo common pseudo classes are the same.Michael Drake2016-11-192-8/+79
|
* Selection: Abstract common node flags setting code into helper.Michael Drake2016-11-191-44/+22
|
* Debug for recording which nodes fail to share style and why.Michael Drake2016-11-191-0/+50
|
* Documentation: Function param comment fix.Michael Drake2016-11-191-1/+0
|