| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index 4d3ff96a1ac053636e8a697d2ffd131227bb2919..99cf5aed29b1d592b10fa2c059a67884dcfd5d19 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -386,10 +386,16 @@ public:
|
| void setIsTransitionDocument() { m_isTransitionDocument = true; }
|
| void hideTransitionElements(const AtomicString& cssSelector);
|
|
|
| + struct TransitionElement {
|
| + String name;
|
| + IntRect rect;
|
| + };
|
| +
|
| struct TransitionElementData {
|
| String scope;
|
| String selector;
|
| String markup;
|
| + Vector<TransitionElement> elements;
|
| };
|
| void getTransitionElementData(Vector<TransitionElementData>&);
|
|
|
|
|