Top |
guint64 | webkit_frame_get_id () |
gboolean | webkit_frame_is_main_frame () |
const gchar * | webkit_frame_get_uri () |
JSGlobalContextRef | webkit_frame_get_javascript_global_context () |
JSGlobalContextRef | webkit_frame_get_javascript_context_for_script_world () |
JSCContext * | webkit_frame_get_js_context () |
JSCContext * | webkit_frame_get_js_context_for_script_world () |
JSCValue * | webkit_frame_get_js_value_for_dom_object () |
JSCValue * | webkit_frame_get_js_value_for_dom_object_in_script_world () |
guint64
webkit_frame_get_id (WebKitFrame *frame
);
Gets the process-unique identifier of this WebKitFrame. No other frame in the same web process will have the same ID; however, frames in other web processes may.
Since: 2.26
gboolean
webkit_frame_is_main_frame (WebKitFrame *frame
);
Gets whether frame
is the main frame of a WebKitWebPage
Since: 2.2
const gchar *
webkit_frame_get_uri (WebKitFrame *frame
);
Gets the current active URI of frame
.
Since: 2.2
JSGlobalContextRef
webkit_frame_get_javascript_global_context
(WebKitFrame *frame
);
webkit_frame_get_javascript_global_context
has been deprecated since version 2.22 and should not be used in newly-written code.
Use webkit_frame_get_js_context()
instead.
Gets the global JavaScript execution context. Use this function to bridge between the WebKit and JavaScriptCore APIs.
[skip]
Since: 2.2
JSGlobalContextRef webkit_frame_get_javascript_context_for_script_world (WebKitFrame *frame
,WebKitScriptWorld *world
);
webkit_frame_get_javascript_context_for_script_world
has been deprecated since version 2.22 and should not be used in newly-written code.
Use webkit_frame_get_js_context_for_script_world()
instead.
Gets the JavaScript execution context of frame
for the given WebKitScriptWorld.
[skip]
Since: 2.2
JSCContext *
webkit_frame_get_js_context (WebKitFrame *frame
);
Get the JavaScript execution context of frame
. Use this function to bridge
between the WebKit and JavaScriptCore APIs.
Since: 2.22
JSCContext * webkit_frame_get_js_context_for_script_world (WebKitFrame *frame
,WebKitScriptWorld *world
);
Get the JavaScript execution context of frame
for the given WebKitScriptWorld.
Since: 2.22
JSCValue * webkit_frame_get_js_value_for_dom_object (WebKitFrame *frame
,WebKitDOMObject *dom_object
);
Get a JSCValue referencing the given DOM object. The value is created in the JavaScript execution
context of frame
.
Since: 2.22
JSCValue * webkit_frame_get_js_value_for_dom_object_in_script_world (WebKitFrame *frame
,WebKitDOMObject *dom_object
,WebKitScriptWorld *world
);
Get a JSCValue referencing the given DOM object. The value is created in the JavaScript execution
context of frame
for the given WebKitScriptWorld.
Since: 2.22