summaryrefslogtreecommitdiffstats
path: root/Source/WebKit2/Shared/SelectionState.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit2/Shared/SelectionState.h')
-rw-r--r--Source/WebKit2/Shared/SelectionState.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/WebKit2/Shared/SelectionState.h b/Source/WebKit2/Shared/SelectionState.h
index 2ce0e9c..9931a10 100644
--- a/Source/WebKit2/Shared/SelectionState.h
+++ b/Source/WebKit2/Shared/SelectionState.h
@@ -35,6 +35,7 @@ struct SelectionState {
SelectionState()
: isNone(true)
, isContentEditable(false)
+ , isContentRichlyEditable(false)
, isInPasswordField(false)
, hasComposition(false)
, selectedRangeStart(notFound)
@@ -47,6 +48,9 @@ struct SelectionState {
// Whether the selection is in a content editable area.
bool isContentEditable;
+
+ // Whether the selection is in a rich content editable area.
+ bool isContentRichlyEditable;
// Whether the selection is in a password field.
bool isInPasswordField;