Top |
Functions
Properties
Object Hierarchy
GObject ╰── WebKitDOMObject ╰── WebKitDOMNode ╰── WebKitDOMDocument ╰── WebKitDOMHTMLDocument
Functions
webkit_dom_document_create_element ()
WebKitDOMElement * webkit_dom_document_create_element (WebKitDOMDocument *self
,const gchar *tagName
,GError **error
);
webkit_dom_document_create_document_fragment ()
WebKitDOMDocumentFragment *
webkit_dom_document_create_document_fragment
(WebKitDOMDocument *self
);
webkit_dom_document_create_text_node ()
WebKitDOMText * webkit_dom_document_create_text_node (WebKitDOMDocument *self
,const gchar *data
);
webkit_dom_document_create_comment ()
WebKitDOMComment * webkit_dom_document_create_comment (WebKitDOMDocument *self
,const gchar *data
);
webkit_dom_document_create_cdata_section ()
WebKitDOMCDATASection * webkit_dom_document_create_cdata_section (WebKitDOMDocument *self
,const gchar *data
,GError **error
);
webkit_dom_document_create_processing_instruction ()
WebKitDOMProcessingInstruction * webkit_dom_document_create_processing_instruction (WebKitDOMDocument *self
,const gchar *target
,const gchar *data
,GError **error
);
webkit_dom_document_create_attribute ()
WebKitDOMAttr * webkit_dom_document_create_attribute (WebKitDOMDocument *self
,const gchar *name
,GError **error
);
webkit_dom_document_create_entity_reference ()
WebKitDOMEntityReference * webkit_dom_document_create_entity_reference (WebKitDOMDocument *self
,const gchar *name
,GError **error
);
webkit_dom_document_get_elements_by_tag_name ()
WebKitDOMNodeList * webkit_dom_document_get_elements_by_tag_name (WebKitDOMDocument *self
,const gchar *tagname
);
webkit_dom_document_import_node ()
WebKitDOMNode * webkit_dom_document_import_node (WebKitDOMDocument *self
,WebKitDOMNode *importedNode
,gboolean deep
,GError **error
);
webkit_dom_document_create_element_ns ()
WebKitDOMElement * webkit_dom_document_create_element_ns (WebKitDOMDocument *self
,const gchar *namespaceURI
,const gchar *qualifiedName
,GError **error
);
webkit_dom_document_create_attribute_ns ()
WebKitDOMAttr * webkit_dom_document_create_attribute_ns (WebKitDOMDocument *self
,const gchar *namespaceURI
,const gchar *qualifiedName
,GError **error
);
webkit_dom_document_get_elements_by_tag_name_ns ()
WebKitDOMNodeList * webkit_dom_document_get_elements_by_tag_name_ns (WebKitDOMDocument *self
,const gchar *namespaceURI
,const gchar *localName
);
webkit_dom_document_get_element_by_id ()
WebKitDOMElement * webkit_dom_document_get_element_by_id (WebKitDOMDocument *self
,const gchar *elementId
);
webkit_dom_document_adopt_node ()
WebKitDOMNode * webkit_dom_document_adopt_node (WebKitDOMDocument *self
,WebKitDOMNode *source
,GError **error
);
webkit_dom_document_create_event ()
WebKitDOMEvent * webkit_dom_document_create_event (WebKitDOMDocument *self
,const gchar *eventType
,GError **error
);
webkit_dom_document_create_range ()
WebKitDOMRange *
webkit_dom_document_create_range (WebKitDOMDocument *self
);
webkit_dom_document_create_node_iterator ()
WebKitDOMNodeIterator * webkit_dom_document_create_node_iterator (WebKitDOMDocument *self
,WebKitDOMNode *root
,gulong whatToShow
,WebKitDOMNodeFilter *filter
,gboolean expandEntityReferences
,GError **error
);
webkit_dom_document_create_tree_walker ()
WebKitDOMTreeWalker * webkit_dom_document_create_tree_walker (WebKitDOMDocument *self
,WebKitDOMNode *root
,gulong whatToShow
,WebKitDOMNodeFilter *filter
,gboolean expandEntityReferences
,GError **error
);
webkit_dom_document_get_override_style ()
WebKitDOMCSSStyleDeclaration * webkit_dom_document_get_override_style (WebKitDOMDocument *self
,WebKitDOMElement *element
,const gchar *pseudoElement
);
webkit_dom_document_create_expression ()
WebKitDOMXPathExpression * webkit_dom_document_create_expression (WebKitDOMDocument *self
,const gchar *expression
,WebKitDOMXPathNSResolver *resolver
,GError **error
);
webkit_dom_document_create_ns_resolver ()
WebKitDOMXPathNSResolver * webkit_dom_document_create_ns_resolver (WebKitDOMDocument *self
,WebKitDOMNode *nodeResolver
);
webkit_dom_document_evaluate ()
WebKitDOMXPathResult * webkit_dom_document_evaluate (WebKitDOMDocument *self
,const gchar *expression
,WebKitDOMNode *contextNode
,WebKitDOMXPathNSResolver *resolver
,gushort type
,WebKitDOMXPathResult *inResult
,GError **error
);
webkit_dom_document_exec_command ()
gboolean webkit_dom_document_exec_command (WebKitDOMDocument *self
,const gchar *command
,gboolean userInterface
,const gchar *value
);
webkit_dom_document_query_command_enabled ()
gboolean webkit_dom_document_query_command_enabled (WebKitDOMDocument *self
,const gchar *command
);
webkit_dom_document_query_command_indeterm ()
gboolean webkit_dom_document_query_command_indeterm (WebKitDOMDocument *self
,const gchar *command
);
webkit_dom_document_query_command_state ()
gboolean webkit_dom_document_query_command_state (WebKitDOMDocument *self
,const gchar *command
);
webkit_dom_document_query_command_supported ()
gboolean webkit_dom_document_query_command_supported (WebKitDOMDocument *self
,const gchar *command
);
webkit_dom_document_query_command_value ()
gchar * webkit_dom_document_query_command_value (WebKitDOMDocument *self
,const gchar *command
);
webkit_dom_document_get_elements_by_name ()
WebKitDOMNodeList * webkit_dom_document_get_elements_by_name (WebKitDOMDocument *self
,const gchar *elementName
);
webkit_dom_document_element_from_point ()
WebKitDOMElement * webkit_dom_document_element_from_point (WebKitDOMDocument *self
,glong x
,glong y
);
webkit_dom_document_caret_range_from_point ()
WebKitDOMRange * webkit_dom_document_caret_range_from_point (WebKitDOMDocument *self
,glong x
,glong y
);
webkit_dom_document_create_css_style_declaration ()
WebKitDOMCSSStyleDeclaration *
webkit_dom_document_create_css_style_declaration
(WebKitDOMDocument *self
);
webkit_dom_document_get_elements_by_class_name ()
WebKitDOMNodeList * webkit_dom_document_get_elements_by_class_name (WebKitDOMDocument *self
,const gchar *tagname
);
webkit_dom_document_query_selector ()
WebKitDOMElement * webkit_dom_document_query_selector (WebKitDOMDocument *self
,const gchar *selectors
,GError **error
);
webkit_dom_document_query_selector_all ()
WebKitDOMNodeList * webkit_dom_document_query_selector_all (WebKitDOMDocument *self
,const gchar *selectors
,GError **error
);
webkit_dom_document_webkit_cancel_full_screen ()
void
webkit_dom_document_webkit_cancel_full_screen
(WebKitDOMDocument *self
);
webkit_dom_document_webkit_exit_fullscreen ()
void
webkit_dom_document_webkit_exit_fullscreen
(WebKitDOMDocument *self
);
webkit_dom_document_webkit_exit_pointer_lock ()
void
webkit_dom_document_webkit_exit_pointer_lock
(WebKitDOMDocument *self
);
webkit_dom_document_webkit_get_named_flows ()
WebKitDOMDOMNamedFlowCollection *
webkit_dom_document_webkit_get_named_flows
(WebKitDOMDocument *self
);
webkit_dom_document_create_touch ()
WebKitDOMTouch * webkit_dom_document_create_touch (WebKitDOMDocument *self
,WebKitDOMDOMWindow *window
,WebKitDOMEventTarget *target
,glong identifier
,glong pageX
,glong pageY
,glong screenX
,glong screenY
,glong webkitRadiusX
,glong webkitRadiusY
,gfloat webkitRotationAngle
,gfloat webkitForce
,GError **error
);
webkit_dom_document_get_doctype ()
WebKitDOMDocumentType *
webkit_dom_document_get_doctype (WebKitDOMDocument *self
);
webkit_dom_document_get_implementation ()
WebKitDOMDOMImplementation *
webkit_dom_document_get_implementation
(WebKitDOMDocument *self
);
webkit_dom_document_get_document_element ()
WebKitDOMElement *
webkit_dom_document_get_document_element
(WebKitDOMDocument *self
);
webkit_dom_document_get_input_encoding ()
gchar *
webkit_dom_document_get_input_encoding
(WebKitDOMDocument *self
);
webkit_dom_document_get_xml_encoding ()
gchar *
webkit_dom_document_get_xml_encoding (WebKitDOMDocument *self
);
webkit_dom_document_get_xml_version ()
gchar *
webkit_dom_document_get_xml_version (WebKitDOMDocument *self
);
webkit_dom_document_set_xml_version ()
void webkit_dom_document_set_xml_version (WebKitDOMDocument *self
,const gchar *value
,GError **error
);
webkit_dom_document_get_xml_standalone ()
gboolean
webkit_dom_document_get_xml_standalone
(WebKitDOMDocument *self
);
webkit_dom_document_set_xml_standalone ()
void webkit_dom_document_set_xml_standalone (WebKitDOMDocument *self
,gboolean value
,GError **error
);
webkit_dom_document_get_document_uri ()
gchar *
webkit_dom_document_get_document_uri (WebKitDOMDocument *self
);
webkit_dom_document_set_document_uri ()
void webkit_dom_document_set_document_uri (WebKitDOMDocument *self
,const gchar *value
);
webkit_dom_document_get_default_view ()
WebKitDOMDOMWindow *
webkit_dom_document_get_default_view (WebKitDOMDocument *self
);
webkit_dom_document_get_style_sheets ()
WebKitDOMStyleSheetList *
webkit_dom_document_get_style_sheets (WebKitDOMDocument *self
);
webkit_dom_document_set_title ()
void webkit_dom_document_set_title (WebKitDOMDocument *self
,const gchar *value
);
webkit_dom_document_get_referrer ()
gchar *
webkit_dom_document_get_referrer (WebKitDOMDocument *self
);
webkit_dom_document_get_cookie ()
gchar * webkit_dom_document_get_cookie (WebKitDOMDocument *self
,GError **error
);
webkit_dom_document_set_cookie ()
void webkit_dom_document_set_cookie (WebKitDOMDocument *self
,const gchar *value
,GError **error
);
webkit_dom_document_get_body ()
WebKitDOMHTMLElement *
webkit_dom_document_get_body (WebKitDOMDocument *self
);
webkit_dom_document_set_body ()
void webkit_dom_document_set_body (WebKitDOMDocument *self
,WebKitDOMHTMLElement *value
,GError **error
);
webkit_dom_document_get_head ()
WebKitDOMHTMLHeadElement *
webkit_dom_document_get_head (WebKitDOMDocument *self
);
webkit_dom_document_get_images ()
WebKitDOMHTMLCollection *
webkit_dom_document_get_images (WebKitDOMDocument *self
);
webkit_dom_document_get_applets ()
WebKitDOMHTMLCollection *
webkit_dom_document_get_applets (WebKitDOMDocument *self
);
webkit_dom_document_get_links ()
WebKitDOMHTMLCollection *
webkit_dom_document_get_links (WebKitDOMDocument *self
);
webkit_dom_document_get_forms ()
WebKitDOMHTMLCollection *
webkit_dom_document_get_forms (WebKitDOMDocument *self
);
webkit_dom_document_get_anchors ()
WebKitDOMHTMLCollection *
webkit_dom_document_get_anchors (WebKitDOMDocument *self
);
webkit_dom_document_get_last_modified ()
gchar *
webkit_dom_document_get_last_modified (WebKitDOMDocument *self
);
webkit_dom_document_get_charset ()
gchar *
webkit_dom_document_get_charset (WebKitDOMDocument *self
);
webkit_dom_document_set_charset ()
void webkit_dom_document_set_charset (WebKitDOMDocument *self
,const gchar *value
);
webkit_dom_document_get_default_charset ()
gchar *
webkit_dom_document_get_default_charset
(WebKitDOMDocument *self
);
webkit_dom_document_get_ready_state ()
gchar *
webkit_dom_document_get_ready_state (WebKitDOMDocument *self
);
webkit_dom_document_get_character_set ()
gchar *
webkit_dom_document_get_character_set (WebKitDOMDocument *self
);
webkit_dom_document_get_preferred_stylesheet_set ()
gchar *
webkit_dom_document_get_preferred_stylesheet_set
(WebKitDOMDocument *self
);
webkit_dom_document_get_selected_stylesheet_set ()
gchar *
webkit_dom_document_get_selected_stylesheet_set
(WebKitDOMDocument *self
);
webkit_dom_document_set_selected_stylesheet_set ()
void webkit_dom_document_set_selected_stylesheet_set (WebKitDOMDocument *self
,const gchar *value
);
webkit_dom_document_get_compat_mode ()
gchar *
webkit_dom_document_get_compat_mode (WebKitDOMDocument *self
);
webkit_dom_document_get_webkit_is_full_screen ()
gboolean
webkit_dom_document_get_webkit_is_full_screen
(WebKitDOMDocument *self
);
webkit_dom_document_get_webkit_full_screen_keyboard_input_allowed ()
gboolean
webkit_dom_document_get_webkit_full_screen_keyboard_input_allowed
(WebKitDOMDocument *self
);
webkit_dom_document_get_webkit_current_full_screen_element ()
WebKitDOMElement *
webkit_dom_document_get_webkit_current_full_screen_element
(WebKitDOMDocument *self
);
webkit_dom_document_get_webkit_fullscreen_enabled ()
gboolean
webkit_dom_document_get_webkit_fullscreen_enabled
(WebKitDOMDocument *self
);
webkit_dom_document_get_webkit_fullscreen_element ()
WebKitDOMElement *
webkit_dom_document_get_webkit_fullscreen_element
(WebKitDOMDocument *self
);
webkit_dom_document_get_webkit_pointer_lock_element ()
WebKitDOMElement *
webkit_dom_document_get_webkit_pointer_lock_element
(WebKitDOMDocument *self
);
webkit_dom_document_get_visibility_state ()
gchar *
webkit_dom_document_get_visibility_state
(WebKitDOMDocument *self
);
webkit_dom_document_get_hidden ()
gboolean
webkit_dom_document_get_hidden (WebKitDOMDocument *self
);
webkit_dom_document_get_security_policy ()
WebKitDOMDOMSecurityPolicy *
webkit_dom_document_get_security_policy
(WebKitDOMDocument *self
);
webkit_dom_document_get_current_script ()
WebKitDOMHTMLScriptElement *
webkit_dom_document_get_current_script
(WebKitDOMDocument *self
);
webkit_dom_document_get_webkit_hidden ()
gboolean
webkit_dom_document_get_webkit_hidden (WebKitDOMDocument *self
);
webkit_dom_document_get_webkit_hidden
is deprecated and should not be used in newly-written code.
webkit_dom_document_get_webkit_visibility_state ()
gchar *
webkit_dom_document_get_webkit_visibility_state
(WebKitDOMDocument *self
);
webkit_dom_document_get_webkit_visibility_state
is deprecated and should not be used in newly-written code.
Property Details
The “anchors”
property
“anchors” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:anchors.
Flags: Read
The “applets”
property
“applets” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:applets.
Flags: Read
The “body”
property
“body” WebKitDOMHTMLElement *
read-only WebKitDOMHTMLElement* Document:body.
Flags: Read
The “character-set”
property
“character-set” gchar *
read-only gchar* Document:character-set.
Flags: Read
Default value: ""
The “charset”
property
“charset” gchar *
read-write gchar* Document:charset.
Flags: Read / Write
Default value: ""
The “compat-mode”
property
“compat-mode” gchar *
read-only gchar* Document:compat-mode.
Flags: Read
Default value: ""
The “cookie”
property
“cookie” gchar *
read-write gchar* Document:cookie.
Flags: Read / Write
Default value: ""
The “current-script”
property
“current-script” WebKitDOMHTMLScriptElement *
read-only WebKitDOMHTMLScriptElement* Document:current-script.
Flags: Read
The “default-charset”
property
“default-charset” gchar *
read-only gchar* Document:default-charset.
Flags: Read
Default value: ""
The “default-view”
property
“default-view” WebKitDOMDOMWindow *
read-only WebKitDOMDOMWindow* Document:default-view.
Flags: Read
The “doctype”
property
“doctype” WebKitDOMDocumentType *
read-only WebKitDOMDocumentType* Document:doctype.
Flags: Read
The “document-element”
property
“document-element” WebKitDOMElement *
read-only WebKitDOMElement* Document:document-element.
Flags: Read
The “document-uri”
property
“document-uri” gchar *
read-write gchar* Document:document-uri.
Flags: Read / Write
Default value: ""
The “domain”
property
“domain” gchar *
read-only gchar* Document:domain.
Flags: Read
Default value: ""
The “forms”
property
“forms” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:forms.
Flags: Read
The “head”
property
“head” WebKitDOMHTMLHeadElement *
read-only WebKitDOMHTMLHeadElement* Document:head.
Flags: Read
The “hidden”
property
“hidden” gboolean
read-only gboolean Document:hidden.
Flags: Read
Default value: FALSE
The “images”
property
“images” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:images.
Flags: Read
The “implementation”
property
“implementation” WebKitDOMDOMImplementation *
read-only WebKitDOMDOMImplementation* Document:implementation.
Flags: Read
The “input-encoding”
property
“input-encoding” gchar *
read-only gchar* Document:input-encoding.
Flags: Read
Default value: ""
The “last-modified”
property
“last-modified” gchar *
read-only gchar* Document:last-modified.
Flags: Read
Default value: ""
The “links”
property
“links” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:links.
Flags: Read
The “preferred-stylesheet-set”
property
“preferred-stylesheet-set” gchar *
read-only gchar* Document:preferred-stylesheet-set.
Flags: Read
Default value: ""
The “ready-state”
property
“ready-state” gchar *
read-only gchar* Document:ready-state.
Flags: Read
Default value: ""
The “referrer”
property
“referrer” gchar *
read-only gchar* Document:referrer.
Flags: Read
Default value: ""
The “security-policy”
property
“security-policy” WebKitDOMDOMSecurityPolicy *
read-only WebKitDOMDOMSecurityPolicy* Document:security-policy.
Flags: Read
The “selected-stylesheet-set”
property
“selected-stylesheet-set” gchar *
read-write gchar* Document:selected-stylesheet-set.
Flags: Read / Write
Default value: ""
The “style-sheets”
property
“style-sheets” WebKitDOMStyleSheetList *
read-only WebKitDOMStyleSheetList* Document:style-sheets.
Flags: Read
The “title”
property
“title” gchar *
read-write gchar* Document:title.
Flags: Read / Write
Default value: ""
The “visibility-state”
property
“visibility-state” gchar *
read-only gchar* Document:visibility-state.
Flags: Read
Default value: ""
The “webkit-current-full-screen-element”
property
“webkit-current-full-screen-element” WebKitDOMElement *
read-only WebKitDOMElement* Document:webkit-current-full-screen-element.
Flags: Read
The “webkit-full-screen-keyboard-input-allowed”
property
“webkit-full-screen-keyboard-input-allowed” gboolean
read-only gboolean Document:webkit-full-screen-keyboard-input-allowed.
Flags: Read
Default value: FALSE
The “webkit-fullscreen-element”
property
“webkit-fullscreen-element” WebKitDOMElement *
read-only WebKitDOMElement* Document:webkit-fullscreen-element.
Flags: Read
The “webkit-fullscreen-enabled”
property
“webkit-fullscreen-enabled” gboolean
read-only gboolean Document:webkit-fullscreen-enabled.
Flags: Read
Default value: FALSE
The “webkit-is-full-screen”
property
“webkit-is-full-screen” gboolean
read-only gboolean Document:webkit-is-full-screen.
Flags: Read
Default value: FALSE
The “webkit-pointer-lock-element”
property
“webkit-pointer-lock-element” WebKitDOMElement *
read-only WebKitDOMElement* Document:webkit-pointer-lock-element.
Flags: Read
The “xml-encoding”
property
“xml-encoding” gchar *
read-only gchar* Document:xml-encoding.
Flags: Read
Default value: ""
The “xml-standalone”
property
“xml-standalone” gboolean
read-write gboolean Document:xml-standalone.
Flags: Read / Write
Default value: FALSE
The “xml-version”
property
“xml-version” gchar *
read-write gchar* Document:xml-version.
Flags: Read / Write
Default value: ""