Commit 97adfc8b authored by Rune Lillesveen's avatar Rune Lillesveen Committed by Commit Bot

Missing call to base class RemovedFrom().

Introduced in:

https://crrev.com/bf7739c4947015b9ddfd245f28ea35de58fe45f8

Caused various fuzzer crashes.

R=andruud@chromium.org

Bug: 961535, 961520
Change-Id: I84fc226afb690fab5cbf07d7ca6aa9b79b4e2f16
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1605406Reviewed-by: default avatarAnders Hartvoll Ruud <andruud@chromium.org>
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#658514}
parent 981e497b
......@@ -531,6 +531,7 @@ void HTMLMetaElement::DidNotifySubtreeInsertionsToDocument() {
}
void HTMLMetaElement::RemovedFrom(ContainerNode& insertion_point) {
HTMLElement::RemovedFrom(insertion_point);
const AtomicString& name_value = FastGetAttribute(kNameAttr);
if (!name_value.IsEmpty())
NameRemoved(name_value);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment