Home | History | Annotate | Download | only in qwebframe

Lines Matching refs:webPage

2483                  "takes the focus away from the webpage."
2811 QWebPage* webPage = webView.page();
2812 QSignalSpy loadSpy(webPage, SIGNAL(loadFinished(bool)));
2814 webPage->mainFrame()->load(url);
2817 QList<QWebFrame*> children = webPage->mainFrame()->childFrames();
2824 QPoint scrollPosition(webPage->mainFrame()->scrollPosition());
2825 QVERIFY(webPage->mainFrame()->scrollRecursively(10, 10));
2826 QVERIFY(scrollPosition != webPage->mainFrame()->scrollPosition());
2833 scrollPosition = webPage->mainFrame()->scrollPosition();
2836 QVERIFY(scrollPosition == webPage->mainFrame()->scrollPosition());
2843 QWebElement div = webPage->mainFrame()->documentElement().findFirst("#content1");
2845 webPage->event(&evpres);
2846 scrollPosition = webPage->mainFrame()->scrollPosition();
2848 QVERIFY(webPage->mainFrame()->scrollRecursively(5, 5));
2850 QVERIFY(scrollPosition == webPage->mainFrame()->scrollPosition());
2860 scrollPosition = webPage->mainFrame()->scrollPosition();
2862 QVERIFY(scrollPosition != webPage->mainFrame()->scrollPosition());