OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:selectionDirection
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.idl
53
attribute DOMString
selectionDirection
;
HTMLTextFormControlElement.h
71
const AtomicString&
selectionDirection
() const;
HTMLInputElement.idl
82
[RaisesException, ImplementedAs=selectionDirectionForBinding] attribute DOMString
selectionDirection
;
HTMLTextFormControlElement.cpp
173
setSelectionRange(start, std::max(start, selectionEnd()),
selectionDirection
());
178
setSelectionRange(std::min(end, selectionStart()), end,
selectionDirection
());
472
const AtomicString& HTMLTextFormControlElement::
selectionDirection
() const
[
all
...]
HTMLInputElement.cpp
536
return HTMLTextFormControlElement::
selectionDirection
();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
EditorCommand.cpp
260
WritingDirection
selectionDirection
= EditingStyle::textDirectionForSelection(frame.selection().selection(),
262
// FXIME: We should be returning MixedTriState when
selectionDirection
== direction && hasNestedOrMultipleEmbeddings
263
return (
selectionDirection
== direction && !hasNestedOrMultipleEmbeddings) ? TrueTriState : FalseTriState;
[
all
...]
Completed in 55 milliseconds