| Index: third_party/WebKit/Source/core/dom/Element.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
|
| index 85e2bbf37d39955ef10d7416e4aa1b38dcf0d795..97736c7e6b9593c13174938bdf6319799a51b086 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -2623,6 +2623,11 @@ NodeIntersectionObserverData& Element::ensureIntersectionObserverData()
|
| return ensureElementRareData().ensureIntersectionObserverData();
|
| }
|
|
|
| +ResizeObservationSet& Element::ensureResizeObserverData()
|
| +{
|
| + return ensureElementRareData().ensureResizeObserverData();
|
| +}
|
| +
|
| // Step 1 of http://domparsing.spec.whatwg.org/#insertadjacenthtml()
|
| static Element* contextElementForInsertion(const String& where, Element* element, ExceptionState& exceptionState)
|
| {
|
|
|