SVN commit 1076385 by ggarand: fix css2.1/t1205-c566-list-stl-00-e-ag.html ported from patch by Shinichiro Hamaji M +1 -1 bidi.cpp M +4 -0 render_block.cpp --- trunk/KDE/kdelibs/khtml/rendering/bidi.cpp #1076384:1076385 @@ -2042,7 +2042,7 @@ currentCharacterIsSpace = false; trailingSpaceObject = 0; - if (o->isListMarker() && o->style()->listStylePosition() == OUTSIDE) { + if (o->isListMarker()) { checkShouldIgnoreInitialWhitespace = true; } } else if ( o->isText() ) { --- trunk/KDE/kdelibs/khtml/rendering/render_block.cpp #1076384:1076385 @@ -3208,6 +3208,10 @@ else inlineMax += childMax; } + + // Ignore spaces after a list marker. + if (child->isListMarker()) + stripFrontSpaces = true; } else {