- base
cef_base_ref_counted_t base;
- get_base_url
cef_string_userfree_t function(cef_domdocument_t* self) nothrow get_base_url;
Returns the base URL for the document.
- get_body
cef_domnode_t* function(cef_domdocument_t* self) nothrow get_body;
Returns the BODY node of an HTML document.
- get_complete_url
cef_string_userfree_t function(cef_domdocument_t* self, const(cef_string_t)* partialURL) nothrow get_complete_url;
Returns a complete URL based on the document base URL and the specified
partial URL.
- get_document
cef_domnode_t* function(cef_domdocument_t* self) nothrow get_document;
Returns the root document node.
- get_element_by_id
cef_domnode_t* function(cef_domdocument_t* self, const(cef_string_t)* id) nothrow get_element_by_id;
Returns the document element with the specified ID value.
- get_focused_node
cef_domnode_t* function(cef_domdocument_t* self) nothrow get_focused_node;
Returns the node that currently has keyboard focus.
- get_head
cef_domnode_t* function(cef_domdocument_t* self) nothrow get_head;
Returns the HEAD node of an HTML document.
- get_selection_as_markup
cef_string_userfree_t function(cef_domdocument_t* self) nothrow get_selection_as_markup;
Returns the contents of this selection as markup.
- get_selection_as_text
cef_string_userfree_t function(cef_domdocument_t* self) nothrow get_selection_as_text;
Returns the contents of this selection as text.
- get_selection_end_offset
int function(cef_domdocument_t* self) nothrow get_selection_end_offset;
Returns the selection offset within the end node.
- get_selection_start_offset
int function(cef_domdocument_t* self) nothrow get_selection_start_offset;
Returns the selection offset within the start node.
- get_title
cef_string_userfree_t function(cef_domdocument_t* self) nothrow get_title;
Returns the title of an HTML document.
- get_type
cef_dom_document_type_t function(cef_domdocument_t* self) nothrow get_type;
Returns the document type.
- has_selection
int function(cef_domdocument_t* self) nothrow has_selection;
Returns true (1) if a portion of the document is selected.