зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1737012 - Make nsIFrame::ListTag() include the content id. r=dholbert,TYLin
Differential Revision: https://phabricator.services.mozilla.com/D129136
This commit is contained in:
Родитель
2f868aa742
Коммит
54055aeca2
|
@ -8000,6 +8000,10 @@ nsresult nsIFrame::MakeFrameName(const nsAString& aType,
|
|||
if (mContent && !mContent->IsText()) {
|
||||
nsAutoString buf;
|
||||
mContent->NodeInfo()->NameAtom()->ToString(buf);
|
||||
if (nsAtom* id = mContent->GetID()) {
|
||||
buf.AppendLiteral(" id=");
|
||||
buf.Append(nsDependentAtomString(id));
|
||||
}
|
||||
if (IsSubDocumentFrame()) {
|
||||
nsAutoString src;
|
||||
mContent->AsElement()->GetAttr(kNameSpaceID_None, nsGkAtoms::src, src);
|
||||
|
|
Загрузка…
Ссылка в новой задаче