2001-09-26 02:53:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2000-01-26 03:36:18 +03:00
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
#include "HTMLEditUtils.h"
|
2014-12-02 08:07:42 +03:00
|
|
|
|
2013-12-09 06:52:54 +04:00
|
|
|
#include "mozilla/ArrayUtils.h" // for ArrayLength
|
2016-07-08 08:15:21 +03:00
|
|
|
#include "mozilla/Assertions.h" // for MOZ_ASSERT, etc.
|
2018-10-30 13:00:17 +03:00
|
|
|
#include "mozilla/EditAction.h" // for EditAction
|
2016-07-08 07:10:13 +03:00
|
|
|
#include "mozilla/EditorBase.h" // for EditorBase
|
2012-07-27 18:03:28 +04:00
|
|
|
#include "mozilla/dom/Element.h" // for Element, nsINode
|
2017-03-10 05:17:23 +03:00
|
|
|
#include "nsAString.h" // for nsAString::IsEmpty
|
2016-07-08 08:15:21 +03:00
|
|
|
#include "nsCOMPtr.h" // for nsCOMPtr, operator==, etc.
|
2012-07-13 10:33:42 +04:00
|
|
|
#include "nsCaseTreatment.h"
|
2018-05-09 08:21:22 +03:00
|
|
|
#include "nsDebug.h" // for NS_ASSERTION, etc.
|
2012-07-13 10:33:42 +04:00
|
|
|
#include "nsError.h" // for NS_SUCCEEDED
|
2016-07-08 08:15:21 +03:00
|
|
|
#include "nsGkAtoms.h" // for nsGkAtoms, nsGkAtoms::a, etc.
|
2005-09-05 18:18:56 +04:00
|
|
|
#include "nsHTMLTags.h"
|
2017-10-03 01:05:19 +03:00
|
|
|
#include "nsAtom.h" // for nsAtom
|
2014-02-28 03:04:46 +04:00
|
|
|
#include "nsNameSpaceManager.h" // for kNameSpaceID_None
|
2012-07-13 10:33:42 +04:00
|
|
|
#include "nsLiteralString.h" // for NS_LITERAL_STRING
|
|
|
|
#include "nsString.h" // for nsAutoString
|
2017-09-23 00:56:51 +03:00
|
|
|
#include "mozilla/dom/HTMLAnchorElement.h"
|
2000-01-26 03:36:18 +03:00
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
namespace mozilla {
|
2011-10-11 09:50:08 +04:00
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsInlineStyle() returns true if aNode is an inline style.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsInlineStyle(nsINode* aNode) {
|
2012-07-27 18:03:28 +04:00
|
|
|
MOZ_ASSERT(aNode);
|
2015-03-03 14:08:59 +03:00
|
|
|
return aNode->IsAnyOfHTMLElements(
|
|
|
|
nsGkAtoms::b, nsGkAtoms::i, nsGkAtoms::u, nsGkAtoms::tt, nsGkAtoms::s,
|
|
|
|
nsGkAtoms::strike, nsGkAtoms::big, nsGkAtoms::small, nsGkAtoms::sub,
|
|
|
|
nsGkAtoms::sup, nsGkAtoms::font);
|
2003-07-29 00:31:08 +04:00
|
|
|
}
|
|
|
|
|
2019-04-12 04:17:50 +03:00
|
|
|
bool HTMLEditUtils::IsRemovableInlineStyleElement(Element& aElement) {
|
|
|
|
if (!aElement.IsHTMLElement()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// https://w3c.github.io/editing/execCommand.html#removeformat-candidate
|
|
|
|
if (aElement.IsAnyOfHTMLElements(
|
|
|
|
nsGkAtoms::abbr, // Chrome ignores, but does not make sense.
|
|
|
|
nsGkAtoms::acronym, nsGkAtoms::b,
|
|
|
|
nsGkAtoms::bdi, // Chrome ignores, but does not make sense.
|
|
|
|
nsGkAtoms::bdo, nsGkAtoms::big, nsGkAtoms::cite, nsGkAtoms::code,
|
|
|
|
// nsGkAtoms::del, Chrome ignores, but does not make sense but
|
|
|
|
// execCommand unofficial draft excludes this. Spec issue:
|
|
|
|
// https://github.com/w3c/editing/issues/192
|
|
|
|
nsGkAtoms::dfn, nsGkAtoms::em, nsGkAtoms::font, nsGkAtoms::i,
|
|
|
|
nsGkAtoms::ins, nsGkAtoms::kbd,
|
|
|
|
nsGkAtoms::mark, // Chrome ignores, but does not make sense.
|
|
|
|
nsGkAtoms::nobr, nsGkAtoms::q, nsGkAtoms::s, nsGkAtoms::samp,
|
|
|
|
nsGkAtoms::small, nsGkAtoms::span, nsGkAtoms::strike,
|
|
|
|
nsGkAtoms::strong, nsGkAtoms::sub, nsGkAtoms::sup, nsGkAtoms::tt,
|
|
|
|
nsGkAtoms::u, nsGkAtoms::var)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// If it's a <blink> element, we can remove it.
|
|
|
|
nsAutoString tagName;
|
|
|
|
aElement.GetTagName(tagName);
|
|
|
|
return tagName.LowerCaseEqualsASCII("blink");
|
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsFormatNode() returns true if aNode is a format node.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsFormatNode(nsINode* aNode) {
|
2012-07-27 18:03:28 +04:00
|
|
|
MOZ_ASSERT(aNode);
|
2015-03-03 14:08:59 +03:00
|
|
|
return aNode->IsAnyOfHTMLElements(
|
|
|
|
nsGkAtoms::p, nsGkAtoms::pre, nsGkAtoms::h1, nsGkAtoms::h2, nsGkAtoms::h3,
|
|
|
|
nsGkAtoms::h4, nsGkAtoms::h5, nsGkAtoms::h6, nsGkAtoms::address);
|
2003-07-29 00:31:08 +04:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsNodeThatCanOutdent() returns true if aNode is a list, list item or
|
|
|
|
* blockquote.
|
|
|
|
*/
|
2018-01-30 07:10:52 +03:00
|
|
|
bool HTMLEditUtils::IsNodeThatCanOutdent(nsINode* aNode) {
|
2016-07-07 08:01:12 +03:00
|
|
|
MOZ_ASSERT(aNode);
|
2018-01-30 07:10:52 +03:00
|
|
|
return aNode->IsAnyOfHTMLElements(nsGkAtoms::ul, nsGkAtoms::ol, nsGkAtoms::dl,
|
|
|
|
nsGkAtoms::li, nsGkAtoms::dd, nsGkAtoms::dt,
|
|
|
|
nsGkAtoms::blockquote);
|
2003-07-29 00:31:08 +04:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsHeader() returns true if aNode is an html header.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsHeader(nsINode& aNode) {
|
2015-03-03 14:08:59 +03:00
|
|
|
return aNode.IsAnyOfHTMLElements(nsGkAtoms::h1, nsGkAtoms::h2, nsGkAtoms::h3,
|
|
|
|
nsGkAtoms::h4, nsGkAtoms::h5, nsGkAtoms::h6);
|
2000-01-26 03:36:18 +03:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsListItem() returns true if aNode is an html list item.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsListItem(nsINode* aNode) {
|
2015-03-03 14:08:59 +03:00
|
|
|
MOZ_ASSERT(aNode);
|
|
|
|
return aNode->IsAnyOfHTMLElements(nsGkAtoms::li, nsGkAtoms::dd,
|
|
|
|
nsGkAtoms::dt);
|
2000-01-26 03:36:18 +03:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsTableElement() returns true if aNode is an html table, td, tr, ...
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsTableElement(nsINode* aNode) {
|
2015-03-03 14:08:59 +03:00
|
|
|
MOZ_ASSERT(aNode);
|
|
|
|
return aNode->IsAnyOfHTMLElements(
|
|
|
|
nsGkAtoms::table, nsGkAtoms::tr, nsGkAtoms::td, nsGkAtoms::th,
|
|
|
|
nsGkAtoms::thead, nsGkAtoms::tfoot, nsGkAtoms::tbody, nsGkAtoms::caption);
|
2000-08-14 03:53:34 +04:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsTableElementButNotTable() returns true if aNode is an html td, tr, ...
|
|
|
|
* (doesn't include table)
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsTableElementButNotTable(nsINode* aNode) {
|
2012-05-18 12:29:39 +04:00
|
|
|
MOZ_ASSERT(aNode);
|
2015-03-03 14:08:59 +03:00
|
|
|
return aNode->IsAnyOfHTMLElements(nsGkAtoms::tr, nsGkAtoms::td, nsGkAtoms::th,
|
|
|
|
nsGkAtoms::thead, nsGkAtoms::tfoot,
|
|
|
|
nsGkAtoms::tbody, nsGkAtoms::caption);
|
2003-07-29 00:31:08 +04:00
|
|
|
}
|
2000-08-14 03:53:34 +04:00
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsTable() returns true if aNode is an html table.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsTable(nsINode* aNode) {
|
2015-03-03 14:08:59 +03:00
|
|
|
return aNode && aNode->IsHTMLElement(nsGkAtoms::table);
|
2014-04-28 15:54:46 +04:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsTableRow() returns true if aNode is an html tr.
|
|
|
|
*/
|
2017-11-28 16:28:07 +03:00
|
|
|
bool HTMLEditUtils::IsTableRow(nsINode* aNode) {
|
|
|
|
return aNode && aNode->IsHTMLElement(nsGkAtoms::tr);
|
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsTableCell() returns true if aNode is an html td or th.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsTableCell(nsINode* aNode) {
|
2015-03-03 14:08:59 +03:00
|
|
|
MOZ_ASSERT(aNode);
|
|
|
|
return aNode->IsAnyOfHTMLElements(nsGkAtoms::td, nsGkAtoms::th);
|
2000-01-26 03:36:18 +03:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsTableCellOrCaption() returns true if aNode is an html td or th or caption.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsTableCellOrCaption(nsINode& aNode) {
|
2016-05-01 16:10:39 +03:00
|
|
|
return aNode.IsAnyOfHTMLElements(nsGkAtoms::td, nsGkAtoms::th,
|
|
|
|
nsGkAtoms::caption);
|
2000-08-14 03:53:34 +04:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsList() returns true if aNode is an html list.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsList(nsINode* aNode) {
|
2015-03-03 14:08:59 +03:00
|
|
|
MOZ_ASSERT(aNode);
|
|
|
|
return aNode->IsAnyOfHTMLElements(nsGkAtoms::ul, nsGkAtoms::ol,
|
|
|
|
nsGkAtoms::dl);
|
2000-01-26 03:36:18 +03:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsPre() returns true if aNode is an html pre node.
|
|
|
|
*/
|
2017-11-28 16:28:07 +03:00
|
|
|
bool HTMLEditUtils::IsPre(nsINode* aNode) {
|
|
|
|
return aNode && aNode->IsHTMLElement(nsGkAtoms::pre);
|
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsImage() returns true if aNode is an html image node.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsImage(nsINode* aNode) {
|
2015-03-03 14:08:59 +03:00
|
|
|
return aNode && aNode->IsHTMLElement(nsGkAtoms::img);
|
2014-11-02 15:04:13 +03:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
bool HTMLEditUtils::IsLink(nsINode* aNode) {
|
2014-04-28 15:54:46 +04:00
|
|
|
MOZ_ASSERT(aNode);
|
|
|
|
|
2017-09-23 00:56:51 +03:00
|
|
|
if (!aNode->IsContent()) {
|
|
|
|
return false;
|
2001-01-28 23:13:07 +03:00
|
|
|
}
|
2017-09-23 00:56:51 +03:00
|
|
|
|
2018-03-22 00:39:04 +03:00
|
|
|
RefPtr<HTMLAnchorElement> anchor =
|
|
|
|
HTMLAnchorElement::FromNodeOrNull(aNode->AsContent());
|
2017-09-23 00:56:51 +03:00
|
|
|
if (!anchor) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoString tmpText;
|
|
|
|
anchor->GetHref(tmpText);
|
|
|
|
return !tmpText.IsEmpty();
|
2001-01-28 23:13:07 +03:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
bool HTMLEditUtils::IsNamedAnchor(nsINode* aNode) {
|
2012-01-25 11:50:05 +04:00
|
|
|
MOZ_ASSERT(aNode);
|
2015-03-03 14:08:59 +03:00
|
|
|
if (!aNode->IsHTMLElement(nsGkAtoms::a)) {
|
2012-01-25 11:50:05 +04:00
|
|
|
return false;
|
2001-01-28 23:13:07 +03:00
|
|
|
}
|
2012-01-25 11:50:05 +04:00
|
|
|
|
|
|
|
nsAutoString text;
|
2012-07-27 18:03:28 +04:00
|
|
|
return aNode->AsElement()->GetAttr(kNameSpaceID_None, nsGkAtoms::name,
|
|
|
|
text) &&
|
|
|
|
!text.IsEmpty();
|
2001-01-28 23:13:07 +03:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsMozDiv() returns true if aNode is an html div node with |type = _moz|.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsMozDiv(nsINode* aNode) {
|
2014-08-20 16:25:16 +04:00
|
|
|
MOZ_ASSERT(aNode);
|
2015-03-03 14:08:59 +03:00
|
|
|
return aNode->IsHTMLElement(nsGkAtoms::div) &&
|
2019-08-02 08:45:18 +03:00
|
|
|
aNode->AsElement()->AttrValueIs(kNameSpaceID_None, nsGkAtoms::type,
|
|
|
|
NS_LITERAL_STRING("_moz"),
|
|
|
|
eIgnoreCase);
|
2014-08-20 16:25:16 +04:00
|
|
|
}
|
2000-01-26 03:36:18 +03:00
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsMailCite() returns true if aNode is an html blockquote with |type=cite|.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsMailCite(nsINode* aNode) {
|
2012-07-27 18:03:28 +04:00
|
|
|
MOZ_ASSERT(aNode);
|
2012-05-05 13:00:06 +04:00
|
|
|
|
2001-12-12 09:02:15 +03:00
|
|
|
// don't ask me why, but our html mailcites are id'd by "type=cite"...
|
2012-07-27 18:03:28 +04:00
|
|
|
if (aNode->IsElement() &&
|
|
|
|
aNode->AsElement()->AttrValueIs(kNameSpaceID_None, nsGkAtoms::type,
|
|
|
|
NS_LITERAL_STRING("cite"), eIgnoreCase)) {
|
2012-05-05 13:00:06 +04:00
|
|
|
return true;
|
2000-01-26 03:36:18 +03:00
|
|
|
}
|
2001-12-12 09:02:15 +03:00
|
|
|
|
|
|
|
// ... but our plaintext mailcites by "_moz_quote=true". go figure.
|
2012-07-27 18:03:28 +04:00
|
|
|
if (aNode->IsElement() &&
|
|
|
|
aNode->AsElement()->AttrValueIs(kNameSpaceID_None, nsGkAtoms::mozquote,
|
|
|
|
NS_LITERAL_STRING("true"), eIgnoreCase)) {
|
2012-05-05 13:00:06 +04:00
|
|
|
return true;
|
2001-12-12 09:02:15 +03:00
|
|
|
}
|
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2000-01-26 03:36:18 +03:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
/**
|
|
|
|
* IsFormWidget() returns true if aNode is a form widget of some kind.
|
|
|
|
*/
|
|
|
|
bool HTMLEditUtils::IsFormWidget(nsINode* aNode) {
|
2012-07-27 18:03:28 +04:00
|
|
|
MOZ_ASSERT(aNode);
|
2015-03-03 14:08:59 +03:00
|
|
|
return aNode->IsAnyOfHTMLElements(nsGkAtoms::textarea, nsGkAtoms::select,
|
|
|
|
nsGkAtoms::button, nsGkAtoms::output,
|
2019-06-13 11:58:07 +03:00
|
|
|
nsGkAtoms::progress, nsGkAtoms::meter,
|
|
|
|
nsGkAtoms::input);
|
2001-12-12 09:02:15 +03:00
|
|
|
}
|
|
|
|
|
2017-03-03 07:13:21 +03:00
|
|
|
bool HTMLEditUtils::SupportsAlignAttr(nsINode& aNode) {
|
|
|
|
return aNode.IsAnyOfHTMLElements(
|
|
|
|
nsGkAtoms::hr, nsGkAtoms::table, nsGkAtoms::tbody, nsGkAtoms::tfoot,
|
|
|
|
nsGkAtoms::thead, nsGkAtoms::tr, nsGkAtoms::td, nsGkAtoms::th,
|
|
|
|
nsGkAtoms::div, nsGkAtoms::p, nsGkAtoms::h1, nsGkAtoms::h2, nsGkAtoms::h3,
|
|
|
|
nsGkAtoms::h4, nsGkAtoms::h5, nsGkAtoms::h6);
|
2001-10-09 14:00:33 +04:00
|
|
|
}
|
2005-09-05 18:18:56 +04:00
|
|
|
|
|
|
|
// We use bitmasks to test containment of elements. Elements are marked to be
|
|
|
|
// in certain groups by setting the mGroup member of the nsElementInfo struct
|
|
|
|
// to the corresponding GROUP_ values (OR'ed together). Similarly, elements are
|
|
|
|
// marked to allow containment of certain groups by setting the
|
|
|
|
// mCanContainGroups member of the nsElementInfo struct to the corresponding
|
|
|
|
// GROUP_ values (OR'ed together).
|
|
|
|
// Testing containment then simply consists of checking whether the
|
|
|
|
// mCanContainGroups bitmask of an element and the mGroup bitmask of a
|
|
|
|
// potential child overlap.
|
|
|
|
|
|
|
|
#define GROUP_NONE 0
|
|
|
|
|
|
|
|
// body, head, html
|
2014-05-22 00:12:07 +04:00
|
|
|
#define GROUP_TOPLEVEL (1 << 1)
|
2005-09-05 18:18:56 +04:00
|
|
|
|
2011-07-23 13:45:38 +04:00
|
|
|
// base, link, meta, script, style, title
|
2005-09-05 18:18:56 +04:00
|
|
|
#define GROUP_HEAD_CONTENT (1 << 2)
|
|
|
|
|
|
|
|
// b, big, i, s, small, strike, tt, u
|
|
|
|
#define GROUP_FONTSTYLE (1 << 3)
|
|
|
|
|
2014-06-21 04:08:31 +04:00
|
|
|
// abbr, acronym, cite, code, datalist, del, dfn, em, ins, kbd, mark, rb, rp
|
|
|
|
// rt, rtc, ruby, samp, strong, var
|
2005-09-05 18:18:56 +04:00
|
|
|
#define GROUP_PHRASE (1 << 4)
|
|
|
|
|
2018-03-16 18:26:09 +03:00
|
|
|
// a, applet, basefont, bdi, bdo, br, font, iframe, img, map, meter, object,
|
|
|
|
// output, picture, progress, q, script, span, sub, sup
|
2005-09-05 18:18:56 +04:00
|
|
|
#define GROUP_SPECIAL (1 << 5)
|
|
|
|
|
|
|
|
// button, form, input, label, select, textarea
|
|
|
|
#define GROUP_FORMCONTROL (1 << 6)
|
|
|
|
|
2016-01-20 18:20:40 +03:00
|
|
|
// address, applet, article, aside, blockquote, button, center, del, details,
|
2016-12-23 18:01:50 +03:00
|
|
|
// dialog, dir, div, dl, fieldset, figure, footer, form, h1, h2, h3, h4, h5,
|
|
|
|
// h6, header, hgroup, hr, iframe, ins, main, map, menu, nav, noframes,
|
|
|
|
// noscript, object, ol, p, pre, table, section, summary, ul
|
2005-09-05 18:18:56 +04:00
|
|
|
#define GROUP_BLOCK (1 << 7)
|
|
|
|
|
|
|
|
// frame, frameset
|
|
|
|
#define GROUP_FRAME (1 << 8)
|
|
|
|
|
|
|
|
// col, tbody
|
|
|
|
#define GROUP_TABLE_CONTENT (1 << 9)
|
|
|
|
|
|
|
|
// tr
|
|
|
|
#define GROUP_TBODY_CONTENT (1 << 10)
|
|
|
|
|
|
|
|
// td, th
|
|
|
|
#define GROUP_TR_CONTENT (1 << 11)
|
|
|
|
|
|
|
|
// col
|
|
|
|
#define GROUP_COLGROUP_CONTENT (1 << 12)
|
|
|
|
|
|
|
|
// param
|
|
|
|
#define GROUP_OBJECT_CONTENT (1 << 13)
|
|
|
|
|
|
|
|
// li
|
|
|
|
#define GROUP_LI (1 << 14)
|
|
|
|
|
|
|
|
// area
|
|
|
|
#define GROUP_MAP_CONTENT (1 << 15)
|
|
|
|
|
|
|
|
// optgroup, option
|
|
|
|
#define GROUP_SELECT_CONTENT (1 << 16)
|
|
|
|
|
|
|
|
// option
|
2010-09-10 09:16:56 +04:00
|
|
|
#define GROUP_OPTIONS (1 << 17)
|
2005-09-05 18:18:56 +04:00
|
|
|
|
|
|
|
// dd, dt
|
|
|
|
#define GROUP_DL_CONTENT (1 << 18)
|
|
|
|
|
|
|
|
// p
|
|
|
|
#define GROUP_P (1 << 19)
|
|
|
|
|
|
|
|
// text, whitespace, newline, comment
|
|
|
|
#define GROUP_LEAF (1 << 20)
|
|
|
|
|
2014-05-22 00:12:07 +04:00
|
|
|
// XXX This is because the editor does sublists illegally.
|
2005-09-05 18:18:56 +04:00
|
|
|
// ol, ul
|
|
|
|
#define GROUP_OL_UL (1 << 21)
|
|
|
|
|
2010-06-19 22:44:43 +04:00
|
|
|
// h1, h2, h3, h4, h5, h6
|
|
|
|
#define GROUP_HEADING (1 << 22)
|
|
|
|
|
2010-06-23 21:08:56 +04:00
|
|
|
// figcaption
|
|
|
|
#define GROUP_FIGCAPTION (1 << 23)
|
|
|
|
|
2014-05-22 00:12:07 +04:00
|
|
|
// picture members (img, source)
|
|
|
|
#define GROUP_PICTURE_CONTENT (1 << 24)
|
|
|
|
|
2005-09-05 18:18:56 +04:00
|
|
|
#define GROUP_INLINE_ELEMENT \
|
|
|
|
(GROUP_FONTSTYLE | GROUP_PHRASE | GROUP_SPECIAL | GROUP_FORMCONTROL | \
|
|
|
|
GROUP_LEAF)
|
|
|
|
|
|
|
|
#define GROUP_FLOW_ELEMENT (GROUP_INLINE_ELEMENT | GROUP_BLOCK)
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
struct ElementInfo final {
|
2005-09-05 18:18:56 +04:00
|
|
|
#ifdef DEBUG
|
2017-09-19 04:07:49 +03:00
|
|
|
nsHTMLTag mTag;
|
2005-09-05 18:18:56 +04:00
|
|
|
#endif
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mGroup;
|
|
|
|
uint32_t mCanContainGroups;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIsContainer;
|
|
|
|
bool mCanContainSelf;
|
2005-09-05 18:18:56 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
# define ELEM(_tag, _isContainer, _canContainSelf, _group, _canContainGroups) \
|
|
|
|
{ \
|
|
|
|
eHTMLTag_##_tag, _group, _canContainGroups, _isContainer, \
|
|
|
|
_canContainSelf \
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
# define ELEM(_tag, _isContainer, _canContainSelf, _group, _canContainGroups) \
|
|
|
|
{ _group, _canContainGroups, _isContainer, _canContainSelf }
|
|
|
|
#endif
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
static const ElementInfo kElements[eHTMLTag_userdefined] = {
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(a, true, false, GROUP_SPECIAL, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(abbr, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(acronym, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(address, true, true, GROUP_BLOCK, GROUP_INLINE_ELEMENT | GROUP_P),
|
2017-07-29 02:44:39 +03:00
|
|
|
// While applet is no longer a valid tag, removing it here breaks the editor
|
|
|
|
// (compiles, but causes many tests to fail in odd ways). This list is
|
|
|
|
// tracked against the main HTML Tag list, so any changes will require more
|
|
|
|
// than just removing entries.
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(applet, true, true, GROUP_SPECIAL | GROUP_BLOCK,
|
2005-09-05 18:18:56 +04:00
|
|
|
GROUP_FLOW_ELEMENT | GROUP_OBJECT_CONTENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(area, false, false, GROUP_MAP_CONTENT, GROUP_NONE),
|
|
|
|
ELEM(article, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(aside, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(audio, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(b, true, true, GROUP_FONTSTYLE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(base, false, false, GROUP_HEAD_CONTENT, GROUP_NONE),
|
|
|
|
ELEM(basefont, false, false, GROUP_SPECIAL, GROUP_NONE),
|
2018-03-16 18:26:09 +03:00
|
|
|
ELEM(bdi, true, true, GROUP_SPECIAL, GROUP_INLINE_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(bdo, true, true, GROUP_SPECIAL, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(bgsound, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(big, true, true, GROUP_FONTSTYLE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(blockquote, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(body, true, true, GROUP_TOPLEVEL, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(br, false, false, GROUP_SPECIAL, GROUP_NONE),
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(button, true, true, GROUP_FORMCONTROL | GROUP_BLOCK,
|
|
|
|
GROUP_FLOW_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(canvas, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(caption, true, true, GROUP_NONE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(center, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(cite, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(code, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(col, false, false, GROUP_TABLE_CONTENT | GROUP_COLGROUP_CONTENT,
|
2005-09-05 18:18:56 +04:00
|
|
|
GROUP_NONE),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(colgroup, true, false, GROUP_NONE, GROUP_COLGROUP_CONTENT),
|
2013-02-27 00:19:05 +04:00
|
|
|
ELEM(data, true, false, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(datalist, true, false, GROUP_PHRASE,
|
2010-09-10 09:16:56 +04:00
|
|
|
GROUP_OPTIONS | GROUP_INLINE_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(dd, true, false, GROUP_DL_CONTENT, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(del, true, true, GROUP_PHRASE | GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
2016-01-20 18:20:40 +03:00
|
|
|
ELEM(details, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(dfn, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
2016-12-23 18:01:50 +03:00
|
|
|
ELEM(dialog, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(dir, true, false, GROUP_BLOCK, GROUP_LI),
|
|
|
|
ELEM(div, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(dl, true, false, GROUP_BLOCK, GROUP_DL_CONTENT),
|
|
|
|
ELEM(dt, true, true, GROUP_DL_CONTENT, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(em, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(embed, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(fieldset, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(figcaption, true, false, GROUP_FIGCAPTION, GROUP_FLOW_ELEMENT),
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(figure, true, true, GROUP_BLOCK,
|
|
|
|
GROUP_FLOW_ELEMENT | GROUP_FIGCAPTION),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(font, true, true, GROUP_SPECIAL, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(footer, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(form, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(frame, false, false, GROUP_FRAME, GROUP_NONE),
|
|
|
|
ELEM(frameset, true, true, GROUP_FRAME, GROUP_FRAME),
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(h1, true, false, GROUP_BLOCK | GROUP_HEADING, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(h2, true, false, GROUP_BLOCK | GROUP_HEADING, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(h3, true, false, GROUP_BLOCK | GROUP_HEADING, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(h4, true, false, GROUP_BLOCK | GROUP_HEADING, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(h5, true, false, GROUP_BLOCK | GROUP_HEADING, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(h6, true, false, GROUP_BLOCK | GROUP_HEADING, GROUP_INLINE_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(head, true, false, GROUP_TOPLEVEL, GROUP_HEAD_CONTENT),
|
|
|
|
ELEM(header, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(hgroup, true, false, GROUP_BLOCK, GROUP_HEADING),
|
|
|
|
ELEM(hr, false, false, GROUP_BLOCK, GROUP_NONE),
|
|
|
|
ELEM(html, true, false, GROUP_TOPLEVEL, GROUP_TOPLEVEL),
|
|
|
|
ELEM(i, true, true, GROUP_FONTSTYLE, GROUP_INLINE_ELEMENT),
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(iframe, true, true, GROUP_SPECIAL | GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(image, false, false, GROUP_NONE, GROUP_NONE),
|
2014-05-22 00:12:07 +04:00
|
|
|
ELEM(img, false, false, GROUP_SPECIAL | GROUP_PICTURE_CONTENT, GROUP_NONE),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(input, false, false, GROUP_FORMCONTROL, GROUP_NONE),
|
|
|
|
ELEM(ins, true, true, GROUP_PHRASE | GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(kbd, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
2019-06-13 11:58:07 +03:00
|
|
|
ELEM(keygen, false, false, GROUP_NONE, GROUP_NONE),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(label, true, false, GROUP_FORMCONTROL, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(legend, true, true, GROUP_NONE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(li, true, false, GROUP_LI, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(link, false, false, GROUP_HEAD_CONTENT, GROUP_NONE),
|
|
|
|
ELEM(listing, false, false, GROUP_NONE, GROUP_NONE),
|
2013-01-29 16:31:45 +04:00
|
|
|
ELEM(main, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(map, true, true, GROUP_SPECIAL, GROUP_BLOCK | GROUP_MAP_CONTENT),
|
|
|
|
ELEM(mark, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(marquee, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(menu, true, true, GROUP_BLOCK, GROUP_LI | GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(menuitem, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(meta, false, false, GROUP_HEAD_CONTENT, GROUP_NONE),
|
2012-05-16 15:18:33 +04:00
|
|
|
ELEM(meter, true, false, GROUP_SPECIAL, GROUP_FLOW_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(multicol, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(nav, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(nobr, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(noembed, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(noframes, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(noscript, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(object, true, true, GROUP_SPECIAL | GROUP_BLOCK,
|
2005-09-05 18:18:56 +04:00
|
|
|
GROUP_FLOW_ELEMENT | GROUP_OBJECT_CONTENT),
|
|
|
|
// XXX Can contain self and ul because editor does sublists illegally.
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(ol, true, true, GROUP_BLOCK | GROUP_OL_UL, GROUP_LI | GROUP_OL_UL),
|
|
|
|
ELEM(optgroup, true, false, GROUP_SELECT_CONTENT, GROUP_OPTIONS),
|
|
|
|
ELEM(option, true, false, GROUP_SELECT_CONTENT | GROUP_OPTIONS, GROUP_LEAF),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(output, true, true, GROUP_SPECIAL, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(p, true, false, GROUP_BLOCK | GROUP_P, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(param, false, false, GROUP_OBJECT_CONTENT, GROUP_NONE),
|
2014-05-22 00:12:07 +04:00
|
|
|
ELEM(picture, true, false, GROUP_SPECIAL, GROUP_PICTURE_CONTENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(plaintext, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(pre, true, true, GROUP_BLOCK, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(progress, true, false, GROUP_SPECIAL, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(q, true, true, GROUP_SPECIAL, GROUP_INLINE_ELEMENT),
|
2014-06-21 04:08:31 +04:00
|
|
|
ELEM(rb, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(rp, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(rt, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(rtc, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(ruby, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(s, true, true, GROUP_FONTSTYLE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(samp, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(script, true, false, GROUP_HEAD_CONTENT | GROUP_SPECIAL, GROUP_LEAF),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(section, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(select, true, false, GROUP_FORMCONTROL, GROUP_SELECT_CONTENT),
|
|
|
|
ELEM(small, true, true, GROUP_FONTSTYLE, GROUP_INLINE_ELEMENT),
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(slot, true, false, GROUP_NONE, GROUP_FLOW_ELEMENT),
|
2014-05-22 00:12:07 +04:00
|
|
|
ELEM(source, false, false, GROUP_PICTURE_CONTENT, GROUP_NONE),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(span, true, true, GROUP_SPECIAL, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(strike, true, true, GROUP_FONTSTYLE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(strong, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(style, true, false, GROUP_HEAD_CONTENT, GROUP_LEAF),
|
|
|
|
ELEM(sub, true, true, GROUP_SPECIAL, GROUP_INLINE_ELEMENT),
|
2016-01-20 18:20:40 +03:00
|
|
|
ELEM(summary, true, true, GROUP_BLOCK, GROUP_FLOW_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(sup, true, true, GROUP_SPECIAL, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(table, true, false, GROUP_BLOCK, GROUP_TABLE_CONTENT),
|
|
|
|
ELEM(tbody, true, false, GROUP_TABLE_CONTENT, GROUP_TBODY_CONTENT),
|
|
|
|
ELEM(td, true, false, GROUP_TR_CONTENT, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(textarea, true, false, GROUP_FORMCONTROL, GROUP_LEAF),
|
|
|
|
ELEM(tfoot, true, false, GROUP_NONE, GROUP_TBODY_CONTENT),
|
|
|
|
ELEM(th, true, false, GROUP_TR_CONTENT, GROUP_FLOW_ELEMENT),
|
|
|
|
ELEM(thead, true, false, GROUP_NONE, GROUP_TBODY_CONTENT),
|
2013-03-26 11:15:23 +04:00
|
|
|
ELEM(template, false, false, GROUP_NONE, GROUP_NONE),
|
2013-02-22 19:07:42 +04:00
|
|
|
ELEM(time, true, false, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(title, true, false, GROUP_HEAD_CONTENT, GROUP_LEAF),
|
|
|
|
ELEM(tr, true, false, GROUP_TBODY_CONTENT, GROUP_TR_CONTENT),
|
2013-05-21 20:14:00 +04:00
|
|
|
ELEM(track, false, false, GROUP_NONE, GROUP_NONE),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(tt, true, true, GROUP_FONTSTYLE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(u, true, true, GROUP_FONTSTYLE, GROUP_INLINE_ELEMENT),
|
2005-09-05 18:18:56 +04:00
|
|
|
// XXX Can contain self and ol because editor does sublists illegally.
|
2017-10-02 13:22:12 +03:00
|
|
|
ELEM(ul, true, true, GROUP_BLOCK | GROUP_OL_UL, GROUP_LI | GROUP_OL_UL),
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(var, true, true, GROUP_PHRASE, GROUP_INLINE_ELEMENT),
|
|
|
|
ELEM(video, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(wbr, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(xmp, false, false, GROUP_NONE, GROUP_NONE),
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2005-09-05 18:18:56 +04:00
|
|
|
// These aren't elements.
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(text, false, false, GROUP_LEAF, GROUP_NONE),
|
|
|
|
ELEM(whitespace, false, false, GROUP_LEAF, GROUP_NONE),
|
|
|
|
ELEM(newline, false, false, GROUP_LEAF, GROUP_NONE),
|
|
|
|
ELEM(comment, false, false, GROUP_LEAF, GROUP_NONE),
|
|
|
|
ELEM(entity, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(doctypeDecl, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(markupDecl, false, false, GROUP_NONE, GROUP_NONE),
|
|
|
|
ELEM(instruction, false, false, GROUP_NONE, GROUP_NONE),
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
ELEM(userdefined, true, false, GROUP_NONE, GROUP_FLOW_ELEMENT)};
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
bool HTMLEditUtils::CanContain(int32_t aParent, int32_t aChild) {
|
2005-09-05 18:18:56 +04:00
|
|
|
NS_ASSERTION(aParent > eHTMLTag_unknown && aParent <= eHTMLTag_userdefined,
|
|
|
|
"aParent out of range!");
|
|
|
|
NS_ASSERTION(aChild > eHTMLTag_unknown && aChild <= eHTMLTag_userdefined,
|
|
|
|
"aChild out of range!");
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool checked = false;
|
2005-09-05 18:18:56 +04:00
|
|
|
if (!checked) {
|
2011-10-17 18:59:28 +04:00
|
|
|
checked = true;
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t i;
|
2005-09-05 18:18:56 +04:00
|
|
|
for (i = 1; i <= eHTMLTag_userdefined; ++i) {
|
|
|
|
NS_ASSERTION(kElements[i - 1].mTag == i,
|
|
|
|
"You need to update kElements (missing tags).");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Special-case button.
|
|
|
|
if (aParent == eHTMLTag_button) {
|
2017-09-19 04:07:49 +03:00
|
|
|
static const nsHTMLTag kButtonExcludeKids[] = {
|
2005-09-05 18:18:56 +04:00
|
|
|
eHTMLTag_a, eHTMLTag_fieldset, eHTMLTag_form, eHTMLTag_iframe,
|
|
|
|
eHTMLTag_input, eHTMLTag_select, eHTMLTag_textarea};
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t j;
|
2011-10-11 09:50:08 +04:00
|
|
|
for (j = 0; j < ArrayLength(kButtonExcludeKids); ++j) {
|
2005-09-05 18:18:56 +04:00
|
|
|
if (kButtonExcludeKids[j] == aChild) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2005-09-05 18:18:56 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated elements.
|
2010-10-22 01:12:49 +04:00
|
|
|
if (aChild == eHTMLTag_bgsound) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2005-09-05 18:18:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bug #67007, dont strip userdefined tags.
|
|
|
|
if (aChild == eHTMLTag_userdefined) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2005-09-05 18:18:56 +04:00
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
const ElementInfo& parent = kElements[aParent - 1];
|
2005-09-05 18:18:56 +04:00
|
|
|
if (aParent == aChild) {
|
|
|
|
return parent.mCanContainSelf;
|
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
const ElementInfo& child = kElements[aChild - 1];
|
2005-09-05 18:18:56 +04:00
|
|
|
return (parent.mCanContainGroups & child.mGroup) != 0;
|
2015-05-28 18:58:42 +03:00
|
|
|
}
|
2005-09-05 18:18:56 +04:00
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
bool HTMLEditUtils::IsContainer(int32_t aTag) {
|
2005-09-05 18:18:56 +04:00
|
|
|
NS_ASSERTION(aTag > eHTMLTag_unknown && aTag <= eHTMLTag_userdefined,
|
|
|
|
"aTag out of range!");
|
|
|
|
|
|
|
|
return kElements[aTag - 1].mIsContainer;
|
|
|
|
}
|
2016-07-07 08:01:12 +03:00
|
|
|
|
2017-10-26 19:27:44 +03:00
|
|
|
bool HTMLEditUtils::IsNonListSingleLineContainer(nsINode& aNode) {
|
|
|
|
return aNode.IsAnyOfHTMLElements(
|
|
|
|
nsGkAtoms::address, nsGkAtoms::div, nsGkAtoms::h1, nsGkAtoms::h2,
|
|
|
|
nsGkAtoms::h3, nsGkAtoms::h4, nsGkAtoms::h5, nsGkAtoms::h6,
|
|
|
|
nsGkAtoms::listing, nsGkAtoms::p, nsGkAtoms::pre, nsGkAtoms::xmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HTMLEditUtils::IsSingleLineContainer(nsINode& aNode) {
|
|
|
|
return IsNonListSingleLineContainer(aNode) ||
|
|
|
|
aNode.IsAnyOfHTMLElements(nsGkAtoms::li, nsGkAtoms::dt, nsGkAtoms::dd);
|
|
|
|
}
|
|
|
|
|
2018-10-30 13:00:17 +03:00
|
|
|
EditAction HTMLEditUtils::GetEditActionForInsert(const nsAtom& aTagName) {
|
|
|
|
// This method may be in a hot path. So, return only necessary
|
|
|
|
// EditAction::eInsert*Element.
|
|
|
|
if (&aTagName == nsGkAtoms::ul) {
|
|
|
|
// For InputEvent.inputType, "insertUnorderedList".
|
|
|
|
return EditAction::eInsertUnorderedListElement;
|
|
|
|
}
|
|
|
|
if (&aTagName == nsGkAtoms::ol) {
|
|
|
|
// For InputEvent.inputType, "insertOrderedList".
|
|
|
|
return EditAction::eInsertOrderedListElement;
|
|
|
|
}
|
|
|
|
if (&aTagName == nsGkAtoms::hr) {
|
|
|
|
// For InputEvent.inputType, "insertHorizontalRule".
|
|
|
|
return EditAction::eInsertHorizontalRuleElement;
|
|
|
|
}
|
|
|
|
return EditAction::eInsertNode;
|
|
|
|
}
|
|
|
|
|
2018-11-12 11:13:58 +03:00
|
|
|
EditAction HTMLEditUtils::GetEditActionForRemoveList(const nsAtom& aTagName) {
|
|
|
|
// This method may be in a hot path. So, return only necessary
|
|
|
|
// EditAction::eRemove*Element.
|
|
|
|
if (&aTagName == nsGkAtoms::ul) {
|
|
|
|
// For InputEvent.inputType, "insertUnorderedList".
|
|
|
|
return EditAction::eRemoveUnorderedListElement;
|
|
|
|
}
|
|
|
|
if (&aTagName == nsGkAtoms::ol) {
|
|
|
|
// For InputEvent.inputType, "insertOrderedList".
|
|
|
|
return EditAction::eRemoveOrderedListElement;
|
|
|
|
}
|
|
|
|
return EditAction::eRemoveListElement;
|
|
|
|
}
|
|
|
|
|
2018-10-30 13:00:17 +03:00
|
|
|
EditAction HTMLEditUtils::GetEditActionForInsert(const Element& aElement) {
|
|
|
|
return GetEditActionForInsert(*aElement.NodeInfo()->NameAtom());
|
|
|
|
}
|
|
|
|
|
|
|
|
EditAction HTMLEditUtils::GetEditActionForFormatText(const nsAtom& aProperty,
|
|
|
|
const nsAtom* aAttribute,
|
|
|
|
bool aToSetStyle) {
|
|
|
|
// This method may be in a hot path. So, return only necessary
|
|
|
|
// EditAction::eSet*Property or EditAction::eRemove*Property.
|
|
|
|
if (&aProperty == nsGkAtoms::b) {
|
|
|
|
return aToSetStyle ? EditAction::eSetFontWeightProperty
|
|
|
|
: EditAction::eRemoveFontWeightProperty;
|
|
|
|
}
|
|
|
|
if (&aProperty == nsGkAtoms::i) {
|
|
|
|
return aToSetStyle ? EditAction::eSetTextStyleProperty
|
|
|
|
: EditAction::eRemoveTextStyleProperty;
|
|
|
|
}
|
|
|
|
if (&aProperty == nsGkAtoms::u) {
|
|
|
|
return aToSetStyle ? EditAction::eSetTextDecorationPropertyUnderline
|
|
|
|
: EditAction::eRemoveTextDecorationPropertyUnderline;
|
|
|
|
}
|
|
|
|
if (&aProperty == nsGkAtoms::strike) {
|
|
|
|
return aToSetStyle ? EditAction::eSetTextDecorationPropertyLineThrough
|
|
|
|
: EditAction::eRemoveTextDecorationPropertyLineThrough;
|
|
|
|
}
|
|
|
|
if (&aProperty == nsGkAtoms::sup) {
|
|
|
|
return aToSetStyle ? EditAction::eSetVerticalAlignPropertySuper
|
|
|
|
: EditAction::eRemoveVerticalAlignPropertySuper;
|
|
|
|
}
|
|
|
|
if (&aProperty == nsGkAtoms::sub) {
|
|
|
|
return aToSetStyle ? EditAction::eSetVerticalAlignPropertySub
|
|
|
|
: EditAction::eRemoveVerticalAlignPropertySub;
|
|
|
|
}
|
|
|
|
if (&aProperty == nsGkAtoms::font) {
|
|
|
|
if (aAttribute == nsGkAtoms::face) {
|
|
|
|
return aToSetStyle ? EditAction::eSetFontFamilyProperty
|
|
|
|
: EditAction::eRemoveFontFamilyProperty;
|
|
|
|
}
|
|
|
|
if (aAttribute == nsGkAtoms::color) {
|
|
|
|
return aToSetStyle ? EditAction::eSetColorProperty
|
|
|
|
: EditAction::eRemoveColorProperty;
|
|
|
|
}
|
|
|
|
if (aAttribute == nsGkAtoms::bgcolor) {
|
|
|
|
return aToSetStyle ? EditAction::eSetBackgroundColorPropertyInline
|
|
|
|
: EditAction::eRemoveBackgroundColorPropertyInline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return aToSetStyle ? EditAction::eSetInlineStyleProperty
|
|
|
|
: EditAction::eRemoveInlineStyleProperty;
|
|
|
|
}
|
|
|
|
|
|
|
|
EditAction HTMLEditUtils::GetEditActionForAlignment(
|
|
|
|
const nsAString& aAlignType) {
|
|
|
|
// This method may be in a hot path. So, return only necessary
|
|
|
|
// EditAction::eAlign*.
|
|
|
|
if (aAlignType.EqualsLiteral("left")) {
|
|
|
|
return EditAction::eAlignLeft;
|
|
|
|
}
|
|
|
|
if (aAlignType.EqualsLiteral("right")) {
|
|
|
|
return EditAction::eAlignRight;
|
|
|
|
}
|
|
|
|
if (aAlignType.EqualsLiteral("center")) {
|
|
|
|
return EditAction::eAlignCenter;
|
|
|
|
}
|
|
|
|
if (aAlignType.EqualsLiteral("justify")) {
|
|
|
|
return EditAction::eJustify;
|
|
|
|
}
|
|
|
|
return EditAction::eSetAlignment;
|
|
|
|
}
|
|
|
|
|
2016-07-07 08:01:12 +03:00
|
|
|
} // namespace mozilla
|