about summary refs log tree commit diff stats
path: root/src/css
Commit message (Expand)AuthorAgeFilesLines
* Move http out of main binarybptato2023-12-131-1/+1
* css: add case-insensitive matchingbptato2023-12-112-18/+82
* css: add text-transformbptato2023-12-111-5/+29
* sheet: fix overflow in addAtRulebptato2023-12-091-1/+1
* cascade: simplifybptato2023-12-091-2/+1
* cascade: fix regressionbptato2023-12-091-18/+23
* selectorparser: enum-ize relbptato2023-12-092-25/+35
* sheet: fix a correctness issue, misc refactoringsbptato2023-12-092-51/+63
* cascade: refactor & optimizebptato2023-12-091-153/+192
* layout: add clear, etc.bptato2023-11-231-4/+25
* css/values: use Opt instead of Result[string]bptato2023-11-211-55/+54
* css/values: simplify getComputedValuebptato2023-11-211-11/+10
* css: add box-sizingbptato2023-11-211-4/+21
* twtstr: remove tolower, isWhitespacebptato2023-11-201-5/+6
* layout: add floatsbptato2023-11-172-4/+7
* layout: refactor flow margin propagation, sizingbptato2023-11-121-0/+13
* dom: add some CSSStyleDeclaration functionsbptato2023-10-252-2/+8
* reduce new() usagebptato2023-10-251-4/+5
* Add jspropnames, CSSStyleDeclaration stubbptato2023-10-251-5/+3
* WindowAttributes: refactorbptato2023-10-191-1/+1
* css: fix list style type presentational hintsbptato2023-10-141-17/+20
* css: support more list types, fix <ul/ol type=...bptato2023-10-142-9/+39
* css: support alphabetic list types, support <LI TYPE=...bptato2023-10-142-2/+59
* css: change type of rvalue to char (from Rune)bptato2023-10-014-52/+62
* selectorparser: fix missing case insensitivitybptato2023-10-011-10/+16
* Use twtstr.join everywherebptato2023-10-011-1/+2
* Get rid of unicode.toLowerbptato2023-10-012-4/+5
* px: convert to float first for percentage valuesbptato2023-09-201-1/+1
* update chamebptato2023-09-191-0/+1
* move around more modulesbptato2023-09-144-5/+5
* twtstr: simplifybptato2023-09-131-2/+3
* color: fix parseLegacyColor bugsbptato2023-09-131-6/+10
* refactor: Result[T, DOMException] -> DOMResult[T]bptato2023-08-281-9/+6
* javascript: refactorbptato2023-08-281-1/+1
* config: allow modification through JSbptato2023-08-271-9/+12
* Move HTML parsing into Chamebptato2023-08-155-5/+10
* mediaquery: fix logic errorbptato2023-08-141-1/+1
* css: implement case insensitivitybptato2023-08-102-127/+142
* Fixes & workarounds to compile on Nim 2.0.0bptato2023-08-012-3/+4
* css: very minor optimizationsbptato2023-07-282-19/+15
* mediaquery: fix some missing has checks in parserbptato2023-07-281-0/+2
* css: handle unknown tag names correctlybptato2023-07-253-5/+16
* mediaquery: better debugging functionsbptato2023-07-231-3/+35
* css: fix percentage min/max-width valuesbptato2023-07-231-1/+1
* Add StyledNode stringifier for debuggingbptato2023-07-081-0/+14
* Fix bug in media-query parsingbptato2023-07-043-12/+36
* Use LayoutUnit in layoutbptato2023-07-042-24/+28
* cascade: remove sugar, add DeclarationListMap typebptato2023-06-291-36/+53
* cssparser: remove unused function, cast instead of collectbptato2023-06-291-21/+5
* css/values: remove stray eprintbptato2023-06-251-2/+0
s-bing.go?id=16bcb7f173399c17b73469ac26d20e0d29c59e0d'>16bcb7f ^
53ecbbc ^
16bcb7f ^

53ecbbc ^




16bcb7f ^

53ecbbc ^


16bcb7f ^
53ecbbc ^
16bcb7f ^
16bcb7f ^
53ecbbc ^






16bcb7f ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133