Home
last modified time | relevance | path

Searched refs:allFrames (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
DLayoutTestController.h106 void addUserScript(JSStringRef source, bool runAtStart, bool allFrames);
107 void addUserStyleSheet(JSStringRef source, bool allFrames);
DLayoutTestController.cpp191 void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool allFrames) in addUserScript() argument
198 (allFrames ? kWKInjectInAllFrames : kWKInjectInTopFrameOnly)); in addUserScript()
201 void LayoutTestController::addUserStyleSheet(JSStringRef source, bool allFrames) in addUserStyleSheet() argument
207 (allFrames ? kWKInjectInAllFrames : kWKInjectInTopFrameOnly)); in addUserStyleSheet()
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
DLayoutTestController.idl81 void addUserScript(in DOMString source, in boolean runAtStart, in boolean allFrames);
82 void addUserStyleSheet(in DOMString source, in boolean allFrames);
/external/webkit/Tools/DumpRenderTree/wx/
DLayoutTestControllerWx.cpp400 void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool allFrames) in addUserScript() argument
405 void LayoutTestController::addUserStyleSheet(JSStringRef source, bool allFrames) in addUserStyleSheet() argument
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DDumpRenderTreeSupportGtk.h75 static void addUserStyleSheet(WebKitWebFrame*, const char* sourceCode, bool allFrames);
DDumpRenderTreeSupportGtk.cpp347 …derTreeSupportGtk::addUserStyleSheet(WebKitWebFrame* frame, const char* sourceCode, bool allFrames) in addUserStyleSheet() argument
357 …serStyleSheetToWorld(mainThreadNormalWorld(), sourceCode, KURL(), 0, 0, allFrames ? InjectInAllFra… in addUserStyleSheet()
/external/webkit/Tools/DumpRenderTree/
DLayoutTestController.h283 void addUserScript(JSStringRef source, bool runAtStart, bool allFrames);
284 void addUserStyleSheet(JSStringRef source, bool allFrames);
DLayoutTestController.cpp1905 bool allFrames = JSValueToBoolean(context, arguments[2]); in addUserScriptCallback() local
1908 controller->addUserScript(source.get(), runAtStart, allFrames); in addUserScriptCallback()
1919 bool allFrames = JSValueToBoolean(context, arguments[1]); in addUserStyleSheetCallback() local
1922 controller->addUserStyleSheet(source.get(), allFrames); in addUserStyleSheetCallback()
/external/webkit/Tools/DumpRenderTree/gtk/
DLayoutTestControllerGtk.cpp813 void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool allFrames) in addUserScript() argument
818 void LayoutTestController::addUserStyleSheet(JSStringRef source, bool allFrames) in addUserStyleSheet() argument
821 DumpRenderTreeSupportGtk::addUserStyleSheet(mainFrame, sourceCode.get(), allFrames); in addUserStyleSheet()
/external/webkit/Tools/DumpRenderTree/mac/
DLayoutTestControllerMac.mm813 void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool allFrames)
817 …rt ? WebInjectAtDocumentStart : WebInjectAtDocumentEnd) injectedFrames:(allFrames ? WebInjectInAll…
820 void LayoutTestController::addUserStyleSheet(JSStringRef source, bool allFrames)
824 …ld] source:sourceNS url:nil whitelist:nil blacklist:nil injectedFrames:(allFrames ? WebInjectInAll…
/external/webkit/Tools/DumpRenderTree/win/
DLayoutTestControllerWin.cpp1168 void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool allFrames) in addUserScript() argument
1182 void LayoutTestController::addUserStyleSheet(JSStringRef source, bool allFrames) in addUserStyleSheet() argument
/external/webkit/Source/WebKit/gtk/
DChangeLog2422 (DumpRenderTreeSupportGtk::addUserStyleSheet): Added "bool allFrames" parameter.
/external/webkit/Tools/
DChangeLog-2011-02-1628777 * DumpRenderTree/LayoutTestController.h: Added new allFrames param.
/external/webkit/Source/WebCore/
DChangeLog-2010-12-06103840 (WebCore::Document::pageGroupUserSheets): Check allFrames before injecting.