mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 10:53:11 +09:00
HTML - implement the labels attribute
This commit is contained in:
parent
91e5a3a71e
commit
5b24f05ce7
25 changed files with 516 additions and 95 deletions
|
|
@ -8800,6 +8800,16 @@ HTMLInputElement::GetWebkitEntries(nsTArray<RefPtr<FileSystemEntry>>& aSequence)
|
|||
aSequence.AppendElements(mEntries);
|
||||
}
|
||||
|
||||
already_AddRefed<nsINodeList>
|
||||
HTMLInputElement::GetLabels()
|
||||
{
|
||||
if (!IsLabelable()) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
return nsGenericHTMLElement::Labels();
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue