mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-28 05:10:49 +00:00
Fix bug 406596 (Link/anchor elements are focused within an contentEditable element) for designMode. r/sr=jst.
This commit is contained in:
parent
32c4f34e3c
commit
220f7309ae
@ -3111,6 +3111,16 @@ nsGenericHTMLElement::RemoveFocus(nsPresContext *aPresContext)
|
||||
PRBool
|
||||
nsGenericHTMLElement::IsFocusable(PRInt32 *aTabIndex)
|
||||
{
|
||||
nsIDocument *doc = GetCurrentDoc();
|
||||
if (!doc || doc->HasFlag(NODE_IS_EDITABLE)) {
|
||||
// In designMode documents we only allow focusing the document.
|
||||
if (aTabIndex) {
|
||||
*aTabIndex = -1;
|
||||
}
|
||||
|
||||
return PR_FALSE;
|
||||
}
|
||||
|
||||
PRInt32 tabIndex = 0; // Default value for non HTML elements with -moz-user-focus
|
||||
GetTabIndex(&tabIndex);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user