Gitweb links:
...log
http://git.netsurf-browser.org/libcss.git/shortlog/096d136937c18e9a588f3b...
...commit
http://git.netsurf-browser.org/libcss.git/commit/096d136937c18e9a588f3b6d...
...tree
http://git.netsurf-browser.org/libcss.git/tree/096d136937c18e9a588f3b6df6...
The branch, master has been updated
via 096d136937c18e9a588f3b6df66293cecfb5cdaa (commit)
from c6d7f24987a90bc61e408c4249a6a212276b4174 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/libcss.git/commit/?id=096d136937c18e9a588f...
commit 096d136937c18e9a588f3b6df66293cecfb5cdaa
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Length of computed bits array has increased by one byte.
Reduce unused bytes from 2 to 1.
diff --git a/src/select/computed.h b/src/select/computed.h
index ed9141f..e7f3742 100644
--- a/src/select/computed.h
+++ b/src/select/computed.h
@@ -233,9 +233,9 @@ struct css_computed_style {
* 34 vvlltttt visibility | list-style-position | text-align
* 35 yyy..... overflow-y | <unused>
*/
- uint8_t bits[34];
+ uint8_t bits[35];
- uint8_t unused[2];
+ uint8_t unused[1];
css_color background_color;
lwc_string *background_image;
-----------------------------------------------------------------------
Summary of changes:
src/select/computed.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/select/computed.h b/src/select/computed.h
index ed9141f..e7f3742 100644
--- a/src/select/computed.h
+++ b/src/select/computed.h
@@ -233,9 +233,9 @@ struct css_computed_style {
* 34 vvlltttt visibility | list-style-position | text-align
* 35 yyy..... overflow-y | <unused>
*/
- uint8_t bits[34];
+ uint8_t bits[35];
- uint8_t unused[2];
+ uint8_t unused[1];
css_color background_color;
lwc_string *background_image;
--
Cascading Style Sheets library