tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.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     width: 200
       
     6     height: 250
       
     7     url: "zoomTextOnly.html"
       
     8     settings.zoomTextOnly: true
       
     9     SequentialAnimation on zoomFactor {
       
    10         loops: Animation.Infinite
       
    11         NumberAnimation { from: 2; to: 0.25; duration: 1000 }
       
    12         NumberAnimation { from: 0.25; to: 2; duration: 1000 }
       
    13     }
       
    14 }