diff options
Diffstat (limited to 'khtml/css/cssparser.cpp')
-rw-r--r-- | khtml/css/cssparser.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/khtml/css/cssparser.cpp b/khtml/css/cssparser.cpp index 1bff45c51..23eeb69a9 100644 --- a/khtml/css/cssparser.cpp +++ b/khtml/css/cssparser.cpp @@ -1076,6 +1076,13 @@ bool CSSParser::parseValue( int propId, bool important ) CSS_PROP_LIST_STYLE_IMAGE }; return parseShortHand(propId, properties, 3, important); } + case CSS_PROP_WORD_WRAP: + { + // normal | break-word + if ( id == CSS_VAL_NORMAL || id == CSS_VAL_BREAK_WORD ) + valid_primitive = true; + break; + } default: // #ifdef CSS_DEBUG // kdDebug( 6080 ) << "illegal or CSS2 Aural property: " << val << endl; |