mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
10 lines
143 B
C++
10 lines
143 B
C++
|
#include "WebPage.h"
|
||
|
|
||
|
WebPage::WebPage(QObject *parent) : QWebPage(parent) {
|
||
|
}
|
||
|
|
||
|
bool WebPage::shouldInterruptJavaScript() {
|
||
|
return false;
|
||
|
}
|
||
|
|