summaryrefslogtreecommitdiff
path: root/src/parse/mq.c
Commit message (Collapse)AuthorAgeFilesLines
* Media Queries: Parse only needs propstrings out of css_language.Michael Drake2019-03-101-51/+57
|
* Media Queries: Store type as value, rather than lwc_string.Michael Drake2019-03-101-3/+59
| | | | | | 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-101-0/+57
|
* 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
|
* 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-101-74/+347
|
* Media Queries: parse featuresJohn-Mark Bell2019-03-101-1/+449
|
* Media Queries: datastructures and plumbing.John-Mark Bell2019-03-101-0/+96
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.