зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1489858 - Disable mutation events on shadow trees. r=smaug
Differential Revision: https://phabricator.services.mozilla.com/D10747 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
6a62789cd7
Коммит
c4419aa288
|
@ -4671,8 +4671,11 @@ nsContentUtils::HasMutationListeners(nsINode* aNode,
|
|||
return false;
|
||||
}
|
||||
|
||||
if (aNode->IsContent() && aNode->AsContent()->ChromeOnlyAccess()) {
|
||||
return false;
|
||||
if (aNode->IsContent()) {
|
||||
if (aNode->AsContent()->ChromeOnlyAccess() ||
|
||||
aNode->AsContent()->IsInShadowTree()) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
doc->MayDispatchMutationEvent(aTargetForSubtreeModified);
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
[test-001.html]
|
||||
[A_05_00_01_T1]
|
||||
expected: FAIL
|
||||
|
Загрузка…
Ссылка в новой задаче