OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:allFrames
(Results
1 - 11
of
11
) sorted by null
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
LayoutTestController.idl
81
void addUserScript(in DOMString source, in boolean runAtStart, in boolean
allFrames
);
82
void addUserStyleSheet(in DOMString source, in boolean
allFrames
);
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
LayoutTestController.h
106
void addUserScript(JSStringRef source, bool runAtStart, bool
allFrames
);
107
void addUserStyleSheet(JSStringRef source, bool
allFrames
);
LayoutTestController.cpp
191
void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool
allFrames
)
198
(
allFrames
? kWKInjectInAllFrames : kWKInjectInTopFrameOnly));
201
void LayoutTestController::addUserStyleSheet(JSStringRef source, bool
allFrames
)
207
(
allFrames
? kWKInjectInAllFrames : kWKInjectInTopFrameOnly));
/external/webkit/Tools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp
400
void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool
allFrames
)
405
void LayoutTestController::addUserStyleSheet(JSStringRef source, bool
allFrames
)
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.h
75
static void addUserStyleSheet(WebKitWebFrame*, const char* sourceCode, bool
allFrames
);
DumpRenderTreeSupportGtk.cpp
347
void DumpRenderTreeSupportGtk::addUserStyleSheet(WebKitWebFrame* frame, const char* sourceCode, bool
allFrames
)
357
page->group().addUserStyleSheetToWorld(mainThreadNormalWorld(), sourceCode, KURL(), 0, 0,
allFrames
? InjectInAllFrames : InjectInTopFrameOnly);
/external/webkit/Tools/DumpRenderTree/
LayoutTestController.h
283
void addUserScript(JSStringRef source, bool runAtStart, bool
allFrames
);
284
void addUserStyleSheet(JSStringRef source, bool
allFrames
);
LayoutTestController.cpp
[
all
...]
/external/webkit/Tools/DumpRenderTree/mac/
LayoutTestControllerMac.mm
813
void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool
allFrames
)
817
[WebView _addUserScriptToGroup:@"org.webkit.DumpRenderTree" world:[WebScriptWorld world] source:sourceNS url:nil whitelist:nil blacklist:nil injectionTime:(runAtStart ? WebInjectAtDocumentStart : WebInjectAtDocumentEnd) injectedFrames:(
allFrames
? WebInjectInAllFrames : WebInjectInTopFrameOnly)];
820
void LayoutTestController::addUserStyleSheet(JSStringRef source, bool
allFrames
)
824
[WebView _addUserStyleSheetToGroup:@"org.webkit.DumpRenderTree" world:[WebScriptWorld world] source:sourceNS url:nil whitelist:nil blacklist:nil injectedFrames:(
allFrames
? WebInjectInAllFrames : WebInjectInTopFrameOnly)];
[
all
...]
/external/webkit/Tools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp
813
void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool
allFrames
)
818
void LayoutTestController::addUserStyleSheet(JSStringRef source, bool
allFrames
)
821
DumpRenderTreeSupportGtk::addUserStyleSheet(mainFrame, sourceCode.get(),
allFrames
);
822
// FIXME: needs more investigation why userscripts/user-style-top-frame-only.html fails when
allFrames
is false.
[
all
...]
/external/webkit/Tools/DumpRenderTree/win/
LayoutTestControllerWin.cpp
[
all
...]
Completed in 991 milliseconds