summaryrefslogtreecommitdiff
path: root/src/select/computed.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-11-06 12:29:43 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2014-11-07 12:22:40 +0000
commitd250b1019c669478cf462b64ca060e7aedb5def1 (patch)
tree037d3f00e3c4e0f5714f55e3b6f159e41f349a03 /src/select/computed.h
parent121504a4a2b0f8d1e16e507ca71916479c0e5c69 (diff)
downloadlibcss-d250b1019c669478cf462b64ca060e7aedb5def1.tar.gz
libcss-d250b1019c669478cf462b64ca060e7aedb5def1.tar.bz2
Implement selection for column-fill property.
Diffstat (limited to 'src/select/computed.h')
-rw-r--r--src/select/computed.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/select/computed.h b/src/select/computed.h
index ff52df3..23b0cb6 100644
--- a/src/select/computed.h
+++ b/src/select/computed.h
@@ -18,12 +18,13 @@ typedef struct css_computed_uncommon {
* border_spacing 1 + 2(4) 2(4)
* clip 2 + 4(4) + 4 4(4)
* column_count 2 4
+ * column_fill 2 0
* letter_spacing 2 + 4 4
* outline_color 2 4
* outline_width 3 + 4 4
* word_spacing 2 + 4 4
* --- ---
- * 54 bits 44 bytes
+ * 56 bits 44 bytes
*
* Encode counter_increment and _reset as an array of name, value pairs,
* terminated with a blank entry.
@@ -47,7 +48,7 @@ typedef struct css_computed_uncommon {
* 2 bits sizeof(ptr)
*
* ___ ___
- * 63 bits 44 + 4sizeof(ptr) bytes
+ * 65 bits 44 + 4sizeof(ptr) bytes
*
* 8 bytes 44 + 4sizeof(ptr) bytes
* ===================
@@ -64,7 +65,7 @@ typedef struct css_computed_uncommon {
* 6 cccccccc clip
* 7 cccccccc clip
* 8 ccccccoo clip | content
- * 9 cc...... column_count | <unused>
+ * 9 ccff.... column_count | column-fill | <unused>
*/
uint8_t bits[9];