summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-01-29 19:38:26 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-01-29 19:38:26 +0000
commite24f8fd2434912114dc1190de60d9ab72594b494 (patch)
tree8c4b256f0d9fefc970e4ad27f72f4966b4014943 /include
parentce769b3556c816e897341f5607055b921799bd1c (diff)
downloadlibcss-e24f8fd2434912114dc1190de60d9ab72594b494.tar.gz
libcss-e24f8fd2434912114dc1190de60d9ab72594b494.tar.bz2
cursor:, which I omitted from the previous commit.
svn path=/trunk/libcss/; revision=6292
Diffstat (limited to 'include')
-rw-r--r--include/libcss/computed.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/include/libcss/computed.h b/include/libcss/computed.h
index 3d211e3..c64ad49 100644
--- a/include/libcss/computed.h
+++ b/include/libcss/computed.h
@@ -31,19 +31,26 @@ typedef struct css_computed_uncommon {
* --- ---
* 47 bits 48 + 2sizeof(ptr) bytes
*
+ * Encode quotes as a (NULL-terminated?) array of string pointers
+ *
* quotes 1 sizeof(ptr)
* --- ---
* 1 bit sizeof(ptr) bytes
*
+ * Encode cursor uri(s) as a (NULL-terminated?) array of string pointers
+ *
+ * cursor 5 sizeof(ptr)
+ * --- ---
+ * 5 bits sizeof(ptr) bytes
+ *
* content ?
- * cursor ?
*
* ___ ___
- * 48 bits 48 + 3sizeof(ptr) bytes
+ * 53 bits 48 + 3sizeof(ptr) bytes
*
- * 6 bytes 48 + 3sizeof(ptr) bytes
+ * 7 bytes 48 + 3sizeof(ptr) bytes
* ===================
- * 54 + 3sizeof(ptr) bytes
+ * 55 + 3sizeof(ptr) bytes
*/
} css_computed_uncommon;