HomeSort by relevance Sort by last modified time
    Searched refs:LayoutTestController (Results 51 - 68 of 68) sorted by null

1 23

  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
disconnected-frame-permission-denied.js 5 if (window.layoutTestController) {
6 layoutTestController.setGeolocationPermission(false);
7 layoutTestController.setMockGeolocationPosition(51.478, -0.166, 100);
9 debug('This test can not be run without the LayoutTestController');
maximum-age.js 28 if (window.layoutTestController) {
29 layoutTestController.setGeolocationPermission(true);
30 layoutTestController.setMockGeolocationPosition(mockLatitude, mockLongitude, mockAccuracy);
32 debug('This test can not be run without the LayoutTestController');
45 if (window.layoutTestController)
46 layoutTestController.setMockGeolocationPosition(++mockLatitude, ++mockLongitude, ++mockAccuracy);
59 if (window.layoutTestController)
60 layoutTestController.setMockGeolocationError(mockCode, mockMessage);
  /external/webkit/Tools/DumpRenderTree/qt/
LayoutTestControllerQt.h 54 class LayoutTestController : public QObject {
60 LayoutTestController(WebCore::DumpRenderTree* drt);
230 // Empty stub method to keep parity with object model exposed by global LayoutTestController.
DumpRenderTreeQt.cpp 184 // layoutTestController.overridePreference() or similar.
198 m_drt->layoutTestController()->setCaretBrowsingEnabled(false);
199 m_drt->layoutTestController()->setFrameFlatteningEnabled(false);
200 m_drt->layoutTestController()->setSmartInsertDeleteEnabled(true);
201 m_drt->layoutTestController()->setSelectTrailingWhitespaceEnabled(false);
204 m_drt->layoutTestController()->setXSSAuditorEnabled(false);
231 if (!m_drt->layoutTestController()->ignoreReqestForPermission())
235 if (m_drt->layoutTestController()->isGeolocationPermissionSet())
236 if (m_drt->layoutTestController()->geolocationPermission())
264 Q_ASSERT(m_drt->layoutTestController()->isGeolocationPermissionSet())
    [all...]
  /external/webkit/Tools/DumpRenderTree/wx/
DumpRenderTreeWx.cpp 32 #include "LayoutTestController.h"
61 RefPtr<LayoutTestController> gLayoutTestController;
238 gLayoutTestController = LayoutTestController::create(pathOrURL, expectedPixelHash);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
LayoutTestController.idl 28 interface LayoutTestController {
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
CallbackProxy.java 27 public class CallbackProxy extends Handler implements EventSender, LayoutTestController {
30 private LayoutTestController mLayoutTestController;
81 LayoutTestController layoutTestController) {
83 mLayoutTestController = layoutTestController;
379 // LayoutTestController Methods
TestShellActivity.java 66 public class TestShellActivity extends Activity implements LayoutTestController {
70 // String constants for use with layoutTestController.overridePreferences
151 mWebView.addJavascriptInterface(mCallbackProxy, "layoutTestController");
370 // LayoutTestController Functions
541 // called the layoutTestController method. Currently, we just use the
550 Log.w(LOGTAG, "LayoutTestController.overridePreference(): " +
792 jsIfaces.put("layoutTestController", mCallbackProxy);
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
PixelDumpSupportMac.mm 36 #include "LayoutTestController.h"
270 int pageWidthInPixels = LayoutTestController::maxViewWidth;
271 int pageHeightInPixels = LayoutTestController::maxViewHeight;
DumpRenderTree.mm 43 #import "LayoutTestController.h"
119 RefPtr<LayoutTestController> gLayoutTestController;
293 NSRect rect = NSMakeRect(0, 0, LayoutTestController::maxViewWidth, LayoutTestController::maxViewHeight);
482 LayoutTestController::setSerializeHTTPLoads(false);
712 // FIXME: This should be moved onto LayoutTestController and made into a HashSet
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
DumpRenderTree.cpp 35 #include "LayoutTestController.h"
107 RefPtr<LayoutTestController> gLayoutTestController;
738 width = LayoutTestController::maxViewWidth;
739 height = LayoutTestController::maxViewHeight;
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
WebViewHost.h 47 class LayoutTestController;
219 // Geolocation client mocks for LayoutTestController
241 LayoutTestController* layoutTestController() const;
TestShell.cpp 36 #include "LayoutTestController.h"
114 m_layoutTestController.set(new LayoutTestController(this));
579 m_layoutTestController->bindToJavascript(frame, WebString::fromUTF8("layoutTestController"));
WebViewHost.cpp 34 #include "LayoutTestController.h"
234 if (!layoutTestController()->canOpenWindows())
284 if (layoutTestController()->shouldDumpEditingCallbacks()) {
289 return layoutTestController()->acceptsEditing();
294 if (layoutTestController()->shouldDumpEditingCallbacks()) {
299 return layoutTestController()->acceptsEditing();
304 if (layoutTestController()->shouldDumpEditingCallbacks()) {
311 return layoutTestController()->acceptsEditing();
316 if (layoutTestController()->shouldDumpEditingCallbacks()) {
321 return layoutTestController()->acceptsEditing()
    [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/
DumpRenderTree.cpp 40 #include "LayoutTestController.h"
78 RefPtr<LayoutTestController> gLayoutTestController;
659 gLayoutTestController = LayoutTestController::create(testURL, expectedPixelHash);
684 size.width = isSVGW3CTest ? 480 : LayoutTestController::maxViewWidth;
685 size.height = isSVGW3CTest ? 360 : LayoutTestController::maxViewHeight;
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundle.cpp 164 m_layoutTestController = LayoutTestController::create();
InjectedBundlePage.cpp 414 if (InjectedBundle::shared().layoutTestController()->waitToDump())
517 InjectedBundle::shared().layoutTestController()->invalidateWaitToDumpWatchdogTimer();
526 InjectedBundle::shared().layoutTestController()->dumpAsText();
528 switch (InjectedBundle::shared().layoutTestController()->whatToDump()) {
529 case LayoutTestController::RenderTree: {
534 case LayoutTestController::MainFrameText:
537 case LayoutTestController::AllFramesText:
542 if (InjectedBundle::shared().layoutTestController()->shouldDumpAllFrameScrollPositions())
544 else if (InjectedBundle::shared().layoutTestController()->shouldDumpMainFrameScrollPosition())
547 if (InjectedBundle::shared().layoutTestController()->shouldDumpBackForwardListsForAllWindows()
    [all...]
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
LayoutTestsExecutor.java 56 * This activity executes the test. It contains WebView and logic of LayoutTestController
107 private LayoutTestController mLayoutTestController = new LayoutTestController(this);
356 javascriptInterfaces.put("layoutTestController", mLayoutTestController);
577 /** String constants for use with layoutTestController.overridePreference() */
621 * called the layoutTestController method. Currently, we just use the
633 Log.w(LOG_TAG, "LayoutTestController.overridePreference(): " +

Completed in 882 milliseconds

1 23