Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-03 | Added CSS properties: position, top, bottom, left, right. (Needed for ↵ | Sebastian Geerken | |
absolute positions.) | |||
2012-12-07 | Merge with <http://hg.dillo.org/dillo>. | Sebastian Geerken | |
2012-12-05 | start styleengine stack bg color with prefs.bg_color | corvid | |
(Prompted by trying to figure out why form widgets had such a tendency to be white.) For the record, I ran this past Johannes before committing. | |||
2012-11-28 | Merge with http://hg.dillo.org/dillo/. | Sebastian Geerken | |
2012-11-26 | rm unused arg in Style::create | corvid | |
2012-11-06 | Merge. | Sebastian Geerken | |
2012-11-05 | trim some spaces | corvid | |
2012-11-04 | own nonCssProperties have precedence over inherited ones | Johannes Hofmann | |
2012-11-04 | some style engine refactoring | Johannes Hofmann | |
2012-11-03 | fix nonCssProperties leak | Johannes Hofmann | |
Fix a leak related to inheritNonCssHints() that can be triggered with following test case: <table border=1> <tr lang=en><td> table </table> noticed-by, test-case-by: corvid <corvid@lavabit.com> | |||
2012-11-03 | more stylengine cleanups | Johannes Hofmann | |
2012-11-03 | remove redundant NULL check | Johannes Hofmann | |
2012-09-20 | Merge again with main repo. | Sebastian Geerken | |
2012-09-15 | use D_ASCII_TOLOWER | corvid | |
2012-09-14 | Merge of <http://hg.dillo.org/dillo>. | Sebastian Geerken | |
2012-09-13 | Merge of http://flpsed.org/hgweb/dillo_hyphen/ | Sebastian Geerken | |
2012-09-06 | set top- and bottom-margin for <p> elements | Johannes Hofmann | |
2012-07-06 | Attribute "lang" is evaluated for hyphenation; part of dw:core::style::Style.y | sgeerken | |
2012-01-21 | add display: property to user agent style | Johannes Hofmann | |
2011-12-30 | move buildUserAgentStyle and buildUserStyle to styleengine.cc | Johannes Hofmann | |
By moving buildUserAgentStyle and buildUserStyle from css.cc to styleengine.cc we can avoid the circular dependency between css.hh and cssparser.hh. | |||
2011-11-11 | generic font-family names not case-sensitive | corvid | |
2011-10-22 | text-transform property | corvid | |
2011-10-14 | font-size property, let absolute-size and relative-size values have larger ↵ | corvid | |
effect Using roughly 1.2 per step, a value mentioned in the CSS2.1 spec. Firefox appears to use a value that is similar but a little larger. http://css-tricks.com/2580-css-font-size/ says that "keyword sizing is pretty consistent across browsers and platforms", and perhaps someday we'll want to go out of our way to make them exactly the same, but this is a start. | |||
2011-09-19 | merge | Johannes Hofmann | |
2011-09-06 | remove trailing whitespace | Jorge Arellano Cid | |
2011-06-07 | support !important in style attributes | Johannes Hofmann | |
2011-05-28 | merge | Johannes Hofmann | |
2011-05-02 | indentation | corvid | |
2011-05-01 | fix handling of CSS length values of 0 without unit | Johannes Hofmann | |
Reported by: "Rob S." <mr_semantics@hotmail.com> Submitted by: corvid <corvid@lavabit.com> | |||
2010-12-14 | border-color: transparent | corvid | |
2010-11-24 | trim some spaces | corvid | |
2010-11-09 | merge | Jorge Arellano Cid | |
2010-11-09 | css text-indent property | corvid | |
thread: http://lists.auriga.wearlab.de/pipermail/dillo-dev/2010-November/007801.html | |||
2010-10-21 | imported patch border-collapse-parsing | Jorge Arellano Cid | |
2010-10-17 | fix another Style leak in StyleEngine | Johannes Hofmann | |
2010-10-17 | remove redundant assert() | Johannes Hofmann | |
Bounds checking is already done by SimpleVector. | |||
2010-10-17 | also recompute backgroundStyle in StyleEngine::restyle() | Johannes Hofmann | |
2010-10-17 | fix Style leaks in StyleEngine | Johannes Hofmann | |
2010-10-17 | merge | Johannes Hofmann | |
2010-10-15 | don't try to set lineHeight if illegal value 'auto' is specified | Johannes Hofmann | |
Testcase: <div style="line-height: auto"> foo<br>foo<br>foo<br> </div> This only fixes the use of uninitialzed values in this case. The real fix will be to drop the invalid declaration in the CSS parser. This needs to be implemented with a later commit. Reported-by: Jeremy Henty <onepoint@starurchin.org> | |||
2010-10-14 | set border-width to 0 if border-style is 'hidden' | Johannes Hofmann | |
2010-10-14 | inline setNonCssHint() | Johannes Hofmann | |
2010-10-13 | comments | Johannes Hofmann | |
2010-10-12 | implement optional deep copy for CssPropertyList | Johannes Hofmann | |
2010-10-11 | use background-color on <html>-element | Johannes Hofmann | |
2010-10-11 | start restyling at 1 | Johannes Hofmann | |
2010-10-11 | add StyleEngine::restyle() | Johannes Hofmann | |
2010-10-11 | rework nonCssHints API of StyleEngine | Johannes Hofmann | |
* Instead of passing the nonCssHints as a CssPropertyList, set the hints separately and create the list in StyleEngine. * The CssPropertyList holding the nonCssHints is now completely managed by StyleEngine and kept on the stack. * Replace the table_cell_props mechanic in html.cc/table.cc with a new method inheritNonCssHints() in StyleEngine. | |||
2010-10-11 | store style attribute as CssPropertyList instead of a string | Johannes Hofmann | |
2010-10-07 | CSS part for font-variant: small-caps support | Jorge Arellano Cid | |
(some uppercasing is done but not utf8) |