summaryrefslogtreecommitdiffstats
path: root/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h')
-rw-r--r--WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h87
1 files changed, 87 insertions, 0 deletions
diff --git a/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h b/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h
new file mode 100644
index 0000000..b92b86a
--- /dev/null
+++ b/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h
@@ -0,0 +1,87 @@
+/*
+ Copyright (C) 2010 Robert Hogan <robert@roberthogan.net>
+ Copyright (C) 2008,2009,2010 Nokia Corporation and/or its subsidiary(-ies)
+ Copyright (C) 2007 Staikos Computing Services Inc.
+ Copyright (C) 2007 Apple Inc.
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+
+#ifndef DumpRenderTreeSupportQt_h
+#define DumpRenderTreeSupportQt_h
+
+#include "qwebkitglobal.h"
+
+#include "qwebelement.h"
+
+class QWebPage;
+class QWebFrame;
+
+class QWEBKIT_EXPORT DumpRenderTreeSupportQt {
+
+public:
+
+ DumpRenderTreeSupportQt();
+ ~DumpRenderTreeSupportQt();
+
+
+ static void executeCoreCommandByName(QWebPage* page, const QString& name, const QString& value);
+ static bool isCommandEnabled(QWebPage* page, const QString& name);
+ static void setSmartInsertDeleteEnabled(QWebPage* page, bool enabled);
+ static void setSelectTrailingWhitespaceEnabled(QWebPage* page, bool enabled);
+
+ static bool pauseAnimation(QWebFrame*, const QString& name, double time, const QString& elementId);
+ static bool pauseTransitionOfProperty(QWebFrame*, const QString& name, double time, const QString& elementId);
+ static bool pauseSVGAnimation(QWebFrame*, const QString& animationId, double time, const QString& elementId);
+ static void suspendActiveDOMObjects(QWebFrame* frame);
+ static void resumeActiveDOMObjects(QWebFrame* frame);
+
+ static void setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme);
+ static void setFrameFlatteningEnabled(QWebPage*, bool);
+ static void setCaretBrowsingEnabled(QWebPage* page, bool value);
+ static void setMediaType(QWebFrame* qframe, const QString& type);
+ static void setDumpRenderTreeModeEnabled(bool b);
+
+ static void evaluateScriptInIsolatedWorld(QWebFrame* frame, int worldId, const QString& script);
+ static void garbageCollectorCollect();
+ static void garbageCollectorCollectOnAlternateThread(bool waitUntilDone);
+ static void setJavaScriptProfilingEnabled(QWebFrame*, bool enabled);
+ static int javaScriptObjectsCount();
+
+ static void setTimelineProfilingEnabled(QWebPage*, bool enabled);
+ static void webInspectorExecuteScript(QWebPage* page, long callId, const QString& script);
+ static void webInspectorShow(QWebPage* page);
+ static void webInspectorClose(QWebPage* page);
+
+ static QString webPageGroupName(QWebPage *page);
+ static QString counterValueForElementById(QWebFrame* frame, const QString& id);
+ static void webPageSetGroupName(QWebPage* page, const QString& groupName);
+ static void clearFrameName(QWebFrame* frame);
+ static void overwritePluginDirectories();
+ static int numberOfActiveAnimations(QWebFrame*);
+ static int numberOfPages(QWebFrame* frame, float width, float height);
+ static int pageNumberForElementById(QWebFrame* frame, const QString& id, float width, float height);
+ static bool hasDocumentElement(QWebFrame* frame);
+
+ static void whiteListAccessFromOrigin(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains);
+ static void resetOriginAccessWhiteLists();
+
+ static int workerThreadCount();
+
+ static QString markerTextForListItem(const QWebElement& listItem);
+};
+
+#endif