mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 01:47:31 +09:00
parent
d3c2a6b6b5
commit
6b075994f5
9 changed files with 81 additions and 9 deletions
|
|
@ -26,6 +26,7 @@ namespace mozilla {
|
|||
class EventChainPreVisitor;
|
||||
namespace dom {
|
||||
class ShadowRoot;
|
||||
class HTMLSlotElement;
|
||||
} // namespace dom
|
||||
namespace widget {
|
||||
struct IMEState;
|
||||
|
|
@ -709,6 +710,20 @@ public:
|
|||
*/
|
||||
virtual nsTArray<nsIContent*> *GetExistingDestInsertionPoints() const = 0;
|
||||
|
||||
/**
|
||||
* Gets the assigned slot associated with this content.
|
||||
*
|
||||
* @return The assigned slot element or null.
|
||||
*/
|
||||
virtual mozilla::dom::HTMLSlotElement* GetAssignedSlot() const = 0;
|
||||
|
||||
/**
|
||||
* Sets the assigned slot associated with this content.
|
||||
*
|
||||
* @param aSlot The assigned slot.
|
||||
*/
|
||||
virtual void SetAssignedSlot(mozilla::dom::HTMLSlotElement* aSlot) = 0;
|
||||
|
||||
/**
|
||||
* Gets the insertion parent element of the XBL binding.
|
||||
* The insertion parent is our one true parent in the transformed DOM.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue