tests/auto/declarative/qmlvisual/webview/settings/fontFamily.qml
changeset 30 5dc02b23752f
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
       
     1 import Qt 4.7
       
     2 import org.webkit 1.0
       
     3 
       
     4 WebView {
       
     5     id: web
       
     6     width: 200
       
     7     height: 200
       
     8     Column {
       
     9         anchors.fill: parent
       
    10         Text { text: "standard: " + web.settings.standardFontFamily }
       
    11         Text { text: "fixed: " + web.settings.fixedFontFamily }
       
    12         Text { text: "serif: " + web.settings.serifFontFamily }
       
    13         Text { text: "sansserif: " + web.settings.sansSerifFontFamily }
       
    14         Text { text: "cursive: " + web.settings.cursiveFontFamily }
       
    15         Text { text: "fantasy: " + web.settings.fantasyFontFamily }
       
    16     }
       
    17 }