summaryrefslogtreecommitdiff
path: root/src/parse/mq.h
Commit message (Collapse)AuthorAgeFilesLines
* Avoid integer types with platform dependent sizeDeltaVonNeumann2023-06-171-1/+1
|
* Media queries: Simplify parsed mq data structure slightly.Michael Drake2019-06-111-6/+2
|
* Media queries: Move css_parse_media_query to parse/mq.c file.Michael Drake2019-03-101-0/+4
| | | | It's now exposed in the mq.h header too.
* Media Queries: Parse only needs propstrings out of css_language.Michael Drake2019-03-101-1/+1
|
* Media Queries: Store type as value, rather than lwc_string.Michael Drake2019-03-101-1/+1
| | | | | | Otherwise we need to convert it in selection, and select/ doesn't have access to the css_language interned strings table.
* Media Queries: Add destruction functions.Michael Drake2019-03-101-1/+1
|
* Media Queries: remainder of parserJohn-Mark Bell2019-03-101-6/+4
|
* Media Queries: parse featuresJohn-Mark Bell2019-03-101-3/+3
|
* Media Queries: sort out object lifetimesJohn-Mark Bell2019-03-101-3/+1
|
* Media Queries: datastructures and plumbing.John-Mark Bell2019-03-101-0/+100
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.