diff -r 5dc02b23752f -r 3e2da88830cd tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml Tue Jul 06 15:10:48 2010 +0300 +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml Wed Aug 18 10:37:55 2010 +0300 @@ -34,10 +34,10 @@ text: s.text; font.underline: true; font.overline: true; font.strikeout: true } Text { - text: s.text; font.letterSpacing: 200 + text: s.text; font.letterSpacing: 2 } Text { - text: s.text; font.underline: true; font.letterSpacing: 200; font.capitalization: "AllUppercase"; color: "blue" + text: s.text; font.underline: true; font.letterSpacing: 2; font.capitalization: "AllUppercase"; color: "blue" } Text { text: s.text; font.overline: true; font.wordSpacing: 25; font.capitalization: "Capitalize"; color: "green" @@ -85,7 +85,7 @@ text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAnywhere } Text { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAtWordBoundaryOrAnywhere + text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.Wrap } } }