Bug 137262

Summary: Implement CSS3/IE extension text-overflow: ellipsis
Product: [Applications] konqueror Reporter: Allan Sandfeld <kde>
Component: khtmlAssignee: Konqueror Developers <konq-bugs>
Status: RESOLVED FIXED    
Severity: wishlist    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

Description Allan Sandfeld 2006-11-13 00:16:05 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources

Please implement the MSIE extension text-overflow: ellipsis as documented here
http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/textoverflow.asp

It is expected to also be part of CSS3 text effects once it is rereleased.

The code has been in Safari since 1.2, so it should be "easy"
Comment 1 Allan Sandfeld 2006-11-13 00:20:01 UTC
SVN commit 604482 by carewolf:

Port of text-overflow: ellipsis from WebCore
FEATURE: 137262


 M  +4 -0      css/cssparser.cpp  
 M  +43 -40    css/cssproperties.c  
 M  +38 -37    css/cssproperties.h  
 M  +1 -0      css/cssproperties.in  
 M  +9 -0      css/cssstyleselector.cpp  
 M  +182 -176  css/cssvalues.c  
 M  +6 -4      css/cssvalues.h  
 M  +4 -0      css/cssvalues.in  
 M  +49 -0     rendering/bidi.cpp  
 M  +5 -0      rendering/render_block.h  
 M  +213 -0    rendering/render_line.cpp  
 M  +35 -2     rendering/render_line.h  
 M  +2 -1      rendering/render_style.cpp  
 M  +8 -1      rendering/render_style.h  
 M  +56 -2     rendering/render_text.cpp  
 M  +11 -1     rendering/render_text.h