Gitweb links:
...log
http://git.netsurf-browser.org/libcss.git/shortlog/f2d4a9d51e77f6276039360b7f8e89a6aea2bef7
...commit
http://git.netsurf-browser.org/libcss.git/commit/f2d4a9d51e77f6276039360b7f8e89a6aea2bef7
...tree
http://git.netsurf-browser.org/libcss.git/tree/f2d4a9d51e77f6276039360b7f8e89a6aea2bef7
The branch, lcneves/flexbox-tidy has been updated
via f2d4a9d51e77f6276039360b7f8e89a6aea2bef7 (commit)
from 88e5dc55b37a2ab458cf42f828ee524546ccad60 (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=f2d4a9d51e77f6276039360b7f8e89a6aea2bef7
commit f2d4a9d51e77f6276039360b7f8e89a6aea2bef7
Author: Lucas Neves <[email protected]>
Commit: Lucas Neves <[email protected]>
Change value of CSS_FLEX_BASIS_SET to 0x1 to conform to other length
properties.
diff --git a/include/libcss/properties.h b/include/libcss/properties.h
index 2163068..577bed0 100644
--- a/include/libcss/properties.h
+++ b/include/libcss/properties.h
@@ -451,9 +451,9 @@ enum css_empty_cells_e {
enum css_flex_basis_e {
CSS_FLEX_BASIS_INHERIT = 0x0,
- CSS_FLEX_BASIS_AUTO = 0x1,
- CSS_FLEX_BASIS_CONTENT = 0x2,
- CSS_FLEX_BASIS_SET = 0x3
+ CSS_FLEX_BASIS_SET = 0x1,
+ CSS_FLEX_BASIS_AUTO = 0x2,
+ CSS_FLEX_BASIS_CONTENT = 0x3
};
enum css_flex_direction_e {
-----------------------------------------------------------------------
Summary of changes:
include/libcss/properties.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/libcss/properties.h b/include/libcss/properties.h
index 2163068..577bed0 100644
--- a/include/libcss/properties.h
+++ b/include/libcss/properties.h
@@ -451,9 +451,9 @@ enum css_empty_cells_e {
enum css_flex_basis_e {
CSS_FLEX_BASIS_INHERIT = 0x0,
- CSS_FLEX_BASIS_AUTO = 0x1,
- CSS_FLEX_BASIS_CONTENT = 0x2,
- CSS_FLEX_BASIS_SET = 0x3
+ CSS_FLEX_BASIS_SET = 0x1,
+ CSS_FLEX_BASIS_AUTO = 0x2,
+ CSS_FLEX_BASIS_CONTENT = 0x3
};
enum css_flex_direction_e {
--
Cascading Style Sheets library
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org