From 028f2f108ce4a943dfe6d9c4f30e2ec5a813106a Mon Sep 17 00:00:00 2001 From: Alice Boxhall Date: Mon, 13 Jan 2025 13:28:10 +1100 Subject: [PATCH 1/5] Add formForBindings() and controlForBindings() methods. These methods currently delegate directly to form() and control() respectively, but will later be modified to ensure that nodes don't leak out of shadow roots once referenceTarget is supported. --- Source/WebCore/html/FormAssociatedElement.cpp | 5 +++++ Source/WebCore/html/FormAssociatedElement.h | 1 + Source/WebCore/html/HTMLButtonElement.idl | 2 +- Source/WebCore/html/HTMLFieldSetElement.idl | 2 +- Source/WebCore/html/HTMLInputElement.idl | 2 +- Source/WebCore/html/HTMLLabelElement.cpp | 10 ++++++++++ Source/WebCore/html/HTMLLabelElement.h | 2 ++ Source/WebCore/html/HTMLLabelElement.idl | 4 ++-- Source/WebCore/html/HTMLLegendElement.cpp | 5 +++++ Source/WebCore/html/HTMLLegendElement.h | 1 + Source/WebCore/html/HTMLLegendElement.idl | 2 +- Source/WebCore/html/HTMLObjectElement.idl | 2 +- Source/WebCore/html/HTMLOptionElement.cpp | 5 +++++ Source/WebCore/html/HTMLOptionElement.h | 1 + Source/WebCore/html/HTMLOptionElement.idl | 2 +- Source/WebCore/html/HTMLOutputElement.idl | 2 +- Source/WebCore/html/HTMLSelectElement.idl | 2 +- Source/WebCore/html/HTMLTextAreaElement.idl | 2 +- 18 files changed, 41 insertions(+), 11 deletions(-) diff --git a/Source/WebCore/html/FormAssociatedElement.cpp b/Source/WebCore/html/FormAssociatedElement.cpp index f14264db3e3af..8e558b920f103 100644 --- a/Source/WebCore/html/FormAssociatedElement.cpp +++ b/Source/WebCore/html/FormAssociatedElement.cpp @@ -35,6 +35,11 @@ FormAssociatedElement::FormAssociatedElement(HTMLFormElement* form) { } +HTMLFormElement* FormAssociatedElement::formForBindings() const +{ + return form(); +} + void FormAssociatedElement::setFormInternal(RefPtr&& newForm) { ASSERT(m_form.get() != newForm); diff --git a/Source/WebCore/html/FormAssociatedElement.h b/Source/WebCore/html/FormAssociatedElement.h index e26d7abdeb5ef..ef7cdb071cffc 100644 --- a/Source/WebCore/html/FormAssociatedElement.h +++ b/Source/WebCore/html/FormAssociatedElement.h @@ -38,6 +38,7 @@ class FormAssociatedElement { virtual void formWillBeDestroyed() { m_form = nullptr; } HTMLFormElement* form() const { return m_form.get(); } + virtual HTMLFormElement* formForBindings() const; void setForm(RefPtr&&); virtual void elementInsertedIntoAncestor(Element&, Node::InsertionType); diff --git a/Source/WebCore/html/HTMLButtonElement.idl b/Source/WebCore/html/HTMLButtonElement.idl index 2ae5fa790a291..cf03a0743711f 100644 --- a/Source/WebCore/html/HTMLButtonElement.idl +++ b/Source/WebCore/html/HTMLButtonElement.idl @@ -22,7 +22,7 @@ Exposed=Window ] interface HTMLButtonElement : HTMLElement { [CEReactions=NotNeeded, Reflect] attribute boolean disabled; - readonly attribute HTMLFormElement form; + [ImplementedAs=formForBindings] readonly attribute HTMLFormElement form; [CEReactions=NotNeeded] attribute [AtomString] USVString formAction; [CEReactions=NotNeeded] attribute [AtomString] DOMString formEnctype; diff --git a/Source/WebCore/html/HTMLFieldSetElement.idl b/Source/WebCore/html/HTMLFieldSetElement.idl index a2e302f6c2fec..70ef0307fc421 100644 --- a/Source/WebCore/html/HTMLFieldSetElement.idl +++ b/Source/WebCore/html/HTMLFieldSetElement.idl @@ -21,7 +21,7 @@ Exposed=Window ] interface HTMLFieldSetElement : HTMLElement { [CEReactions=Needed, Reflect] attribute boolean disabled; - readonly attribute HTMLFormElement form; + [ImplementedAs=formForBindings] readonly attribute HTMLFormElement form; [CEReactions=NotNeeded, Reflect] attribute DOMString name; readonly attribute DOMString type; diff --git a/Source/WebCore/html/HTMLInputElement.idl b/Source/WebCore/html/HTMLInputElement.idl index 5533fa7bac899..7c64bf7cadc75 100644 --- a/Source/WebCore/html/HTMLInputElement.idl +++ b/Source/WebCore/html/HTMLInputElement.idl @@ -48,7 +48,7 @@ enum AutofillButtonType { [EnabledBySetting=InputTypeColorEnhancementsEnabled, CEReactions=NotNeeded] attribute [AtomString] DOMString colorSpace; [CEReactions=NotNeeded, Reflect] attribute DOMString dirName; [CEReactions=NotNeeded, Reflect] attribute boolean disabled; - readonly attribute HTMLFormElement form; + [ImplementedAs=formForBindings] readonly attribute HTMLFormElement form; [ImplementedAs=filesForBindings] attribute FileList? files; [CEReactions=NotNeeded] attribute [AtomString] USVString formAction; diff --git a/Source/WebCore/html/HTMLLabelElement.cpp b/Source/WebCore/html/HTMLLabelElement.cpp index eb715040e56b3..960c86f88c919 100644 --- a/Source/WebCore/html/HTMLLabelElement.cpp +++ b/Source/WebCore/html/HTMLLabelElement.cpp @@ -87,6 +87,11 @@ RefPtr HTMLLabelElement::control() const return isConnected() ? firstElementWithIdIfLabelable(treeScope(), controlId) : nullptr; } +RefPtr HTMLLabelElement::controlForBindings() const +{ + return control(); +} + HTMLFormElement* HTMLLabelElement::form() const { if (auto element = control()) { @@ -96,6 +101,11 @@ HTMLFormElement* HTMLLabelElement::form() const return nullptr; } +HTMLFormElement* HTMLLabelElement::formForBindings() const +{ + return form(); +} + void HTMLLabelElement::setActive(bool down, Style::InvalidationScope invalidationScope) { // Update our status first. diff --git a/Source/WebCore/html/HTMLLabelElement.h b/Source/WebCore/html/HTMLLabelElement.h index 765b6ad655776..db206729c5e5b 100644 --- a/Source/WebCore/html/HTMLLabelElement.h +++ b/Source/WebCore/html/HTMLLabelElement.h @@ -36,7 +36,9 @@ class HTMLLabelElement final : public HTMLElement { static Ref create(Document&); WEBCORE_EXPORT RefPtr control() const; + WEBCORE_EXPORT RefPtr controlForBindings() const; WEBCORE_EXPORT HTMLFormElement* form() const; + WEBCORE_EXPORT HTMLFormElement* formForBindings() const; bool willRespondToMouseClickEventsWithEditability(Editability) const final; void updateLabel(TreeScope&, const AtomString& oldForAttributeValue, const AtomString& newForAttributeValue); diff --git a/Source/WebCore/html/HTMLLabelElement.idl b/Source/WebCore/html/HTMLLabelElement.idl index 6bcab08ebf5ff..17ad7d55e0532 100644 --- a/Source/WebCore/html/HTMLLabelElement.idl +++ b/Source/WebCore/html/HTMLLabelElement.idl @@ -21,8 +21,8 @@ [ Exposed=Window ] interface HTMLLabelElement : HTMLElement { - readonly attribute HTMLFormElement form; + [ImplementedAs=formForBindings] readonly attribute HTMLFormElement form; [CEReactions=NotNeeded, Reflect=for] attribute DOMString htmlFor; - readonly attribute HTMLElement control; + [ImplementedAs=controlForBindings] readonly attribute HTMLElement control; }; diff --git a/Source/WebCore/html/HTMLLegendElement.cpp b/Source/WebCore/html/HTMLLegendElement.cpp index f33b2f017f46c..db668bf6e95c9 100644 --- a/Source/WebCore/html/HTMLLegendElement.cpp +++ b/Source/WebCore/html/HTMLLegendElement.cpp @@ -55,5 +55,10 @@ HTMLFormElement* HTMLLegendElement::form() const RefPtr fieldset = dynamicDowncast(parentNode()); return fieldset ? fieldset->form() : nullptr; } + +HTMLFormElement* HTMLLegendElement::formForBindings() const +{ + return form(); +} } // namespace diff --git a/Source/WebCore/html/HTMLLegendElement.h b/Source/WebCore/html/HTMLLegendElement.h index 9d285f1bbff07..22dc92b98da95 100644 --- a/Source/WebCore/html/HTMLLegendElement.h +++ b/Source/WebCore/html/HTMLLegendElement.h @@ -35,6 +35,7 @@ class HTMLLegendElement final : public HTMLElement { static Ref create(const QualifiedName&, Document&); WEBCORE_EXPORT HTMLFormElement* form() const; + WEBCORE_EXPORT HTMLFormElement* formForBindings() const; private: HTMLLegendElement(const QualifiedName&, Document&); diff --git a/Source/WebCore/html/HTMLLegendElement.idl b/Source/WebCore/html/HTMLLegendElement.idl index c6f2b6689f3ab..2d95fc7c87804 100644 --- a/Source/WebCore/html/HTMLLegendElement.idl +++ b/Source/WebCore/html/HTMLLegendElement.idl @@ -21,7 +21,7 @@ [ Exposed=Window ] interface HTMLLegendElement : HTMLElement { - readonly attribute HTMLFormElement form; + [ImplementedAs=formForBindings] readonly attribute HTMLFormElement form; [CEReactions=NotNeeded, Reflect] attribute DOMString align; }; diff --git a/Source/WebCore/html/HTMLObjectElement.idl b/Source/WebCore/html/HTMLObjectElement.idl index b2cace641c7d7..5e1d4e51053c9 100644 --- a/Source/WebCore/html/HTMLObjectElement.idl +++ b/Source/WebCore/html/HTMLObjectElement.idl @@ -22,7 +22,7 @@ Plugin, Exposed=Window ] interface HTMLObjectElement : HTMLElement { - readonly attribute HTMLFormElement form; + [ImplementedAs=formForBindings] readonly attribute HTMLFormElement form; [CEReactions=NotNeeded, Reflect] attribute DOMString code; [CEReactions=NotNeeded, Reflect] attribute DOMString align; [CEReactions=NotNeeded, Reflect] attribute DOMString archive; diff --git a/Source/WebCore/html/HTMLOptionElement.cpp b/Source/WebCore/html/HTMLOptionElement.cpp index 3bb0ef23446e1..4689874ce89db 100644 --- a/Source/WebCore/html/HTMLOptionElement.cpp +++ b/Source/WebCore/html/HTMLOptionElement.cpp @@ -145,6 +145,11 @@ HTMLFormElement* HTMLOptionElement::form() const return nullptr; } +HTMLFormElement* HTMLOptionElement::formForBindings() const +{ + return form(); +} + int HTMLOptionElement::index() const { // It would be faster to cache the index, but harder to get it right in all cases. diff --git a/Source/WebCore/html/HTMLOptionElement.h b/Source/WebCore/html/HTMLOptionElement.h index 9f50db1ca09eb..87f154869df60 100644 --- a/Source/WebCore/html/HTMLOptionElement.h +++ b/Source/WebCore/html/HTMLOptionElement.h @@ -44,6 +44,7 @@ class HTMLOptionElement final : public HTMLElement { void setText(String&&); WEBCORE_EXPORT HTMLFormElement* form() const; + WEBCORE_EXPORT HTMLFormElement* formForBindings() const; WEBCORE_EXPORT int index() const; diff --git a/Source/WebCore/html/HTMLOptionElement.idl b/Source/WebCore/html/HTMLOptionElement.idl index 47b43ea32987c..b0e06d4fdbad2 100644 --- a/Source/WebCore/html/HTMLOptionElement.idl +++ b/Source/WebCore/html/HTMLOptionElement.idl @@ -25,7 +25,7 @@ LegacyFactoryFunction=Option(optional DOMString text = "", optional [AtomString] DOMString value, optional boolean defaultSelected = false, optional boolean selected = false), ] interface HTMLOptionElement : HTMLElement { [CEReactions=NotNeeded, Reflect] attribute boolean disabled; - readonly attribute HTMLFormElement form; + [ImplementedAs=formForBindings] readonly attribute HTMLFormElement form; [CEReactions=NotNeeded] attribute [AtomString] DOMString label; [CEReactions=NotNeeded, Reflect=selected] attribute boolean defaultSelected; attribute boolean selected; diff --git a/Source/WebCore/html/HTMLOutputElement.idl b/Source/WebCore/html/HTMLOutputElement.idl index 2a2c81ee1017b..7760511dee6f8 100644 --- a/Source/WebCore/html/HTMLOutputElement.idl +++ b/Source/WebCore/html/HTMLOutputElement.idl @@ -29,7 +29,7 @@ [CallWith=CurrentDocument, HTMLConstructor] constructor(); [SameObject, PutForwards=value] readonly attribute DOMTokenList htmlFor; - readonly attribute HTMLFormElement? form; + [ImplementedAs=formForBindings] readonly attribute HTMLFormElement? form; [CEReactions=NotNeeded, Reflect] attribute DOMString name; readonly attribute DOMString type; diff --git a/Source/WebCore/html/HTMLSelectElement.idl b/Source/WebCore/html/HTMLSelectElement.idl index edc501e6809e8..60c7035ef2f9c 100644 --- a/Source/WebCore/html/HTMLSelectElement.idl +++ b/Source/WebCore/html/HTMLSelectElement.idl @@ -25,7 +25,7 @@ ] interface HTMLSelectElement : HTMLElement { [CEReactions=NotNeeded] attribute [AtomString] DOMString autocomplete; [CEReactions=NotNeeded, Reflect] attribute boolean disabled; - readonly attribute HTMLFormElement? form; + [ImplementedAs=formForBindings] readonly attribute HTMLFormElement? form; [CEReactions=NotNeeded, Reflect] attribute boolean multiple; [CEReactions=NotNeeded, Reflect] attribute DOMString name; [CEReactions=NotNeeded, Reflect] attribute boolean required; diff --git a/Source/WebCore/html/HTMLTextAreaElement.idl b/Source/WebCore/html/HTMLTextAreaElement.idl index 3a96588becd81..7cee826390165 100644 --- a/Source/WebCore/html/HTMLTextAreaElement.idl +++ b/Source/WebCore/html/HTMLTextAreaElement.idl @@ -26,7 +26,7 @@ ] interface HTMLTextAreaElement : HTMLElement { [CEReactions=NotNeeded, Reflect] attribute DOMString dirName; [CEReactions=NotNeeded, Reflect] attribute boolean disabled; - readonly attribute HTMLFormElement form; + [ImplementedAs=formForBindings] readonly attribute HTMLFormElement form; [CEReactions=NotNeeded] attribute long minLength; [CEReactions=NotNeeded] attribute long maxLength; [CEReactions=NotNeeded, Reflect] attribute DOMString name; From 483d3bf98b5ae908e05cba32cb74ffddff07729c Mon Sep 17 00:00:00 2001 From: Alice Boxhall Date: Tue, 14 Jan 2025 10:29:49 +1100 Subject: [PATCH 2/5] Use datalist() instead of list() internally. This reserves list() for use in bindings. --- Source/WebCore/html/HTMLInputElement.cpp | 4 ++++ Source/WebCore/html/HTMLInputElement.h | 1 + Source/WebCore/html/TextFieldInputType.cpp | 12 ++++++------ Source/WebCore/html/shadow/SliderThumbElement.cpp | 2 +- Source/WebCore/rendering/RenderTheme.cpp | 2 +- 5 files changed, 13 insertions(+), 8 deletions(-) diff --git a/Source/WebCore/html/HTMLInputElement.cpp b/Source/WebCore/html/HTMLInputElement.cpp index afef65791f97b..13e405446f0aa 100644 --- a/Source/WebCore/html/HTMLInputElement.cpp +++ b/Source/WebCore/html/HTMLInputElement.cpp @@ -1891,6 +1891,10 @@ RefPtr HTMLInputElement::list() const return dataList(); } +bool HTMLInputElement::hasDataList() const { + return dataList(); +} + RefPtr HTMLInputElement::dataList() const { if (!m_hasNonEmptyList || !m_inputType->shouldRespectListAttribute()) diff --git a/Source/WebCore/html/HTMLInputElement.h b/Source/WebCore/html/HTMLInputElement.h index f6349a2cb830d..75808594a27ae 100644 --- a/Source/WebCore/html/HTMLInputElement.h +++ b/Source/WebCore/html/HTMLInputElement.h @@ -288,6 +288,7 @@ class HTMLInputElement final : public HTMLTextFormControlElement { bool willRespondToMouseClickEventsWithEditability(Editability) const final; WEBCORE_EXPORT bool isFocusingWithDataListDropdown() const; + bool hasDataList() const; RefPtr dataList() const; void dataListMayHaveChanged(); diff --git a/Source/WebCore/html/TextFieldInputType.cpp b/Source/WebCore/html/TextFieldInputType.cpp index bd1a7c903b750..bcf9f1a740363 100644 --- a/Source/WebCore/html/TextFieldInputType.cpp +++ b/Source/WebCore/html/TextFieldInputType.cpp @@ -183,14 +183,14 @@ void TextFieldInputType::setValue(const String& sanitizedValue, bool valueChange void TextFieldInputType::handleClickEvent(MouseEvent&) { - if (element()->focused() && element()->list()) + if (element()->focused() && element()->hasDataList()) displaySuggestions(DataListSuggestionActivationType::ControlClicked); } void TextFieldInputType::showPicker() { #if !PLATFORM(IOS_FAMILY) - if (element()->list()) + if (element()->hasDataList()) displaySuggestions(DataListSuggestionActivationType::ControlClicked); #endif } @@ -334,7 +334,7 @@ void TextFieldInputType::createShadowSubtree() bool shouldHaveSpinButton = this->shouldHaveSpinButton(); bool shouldHaveCapsLockIndicator = this->shouldHaveCapsLockIndicator(); bool shouldDrawAutoFillButton = this->shouldDrawAutoFillButton(); - bool hasDataList = element()->list(); + bool hasDataList = element()->hasDataList(); bool createsContainer = shouldHaveSpinButton || shouldHaveCapsLockIndicator || shouldDrawAutoFillButton || hasDataList || needsContainer(); Ref innerText = TextControlInnerTextElement::create(document, element()->isInnerTextElementEditable()); @@ -698,7 +698,7 @@ void TextFieldInputType::didSetValueByUserEdit() return; if (RefPtr frame = element()->document().frame()) frame->editor().textDidChangeInTextField(*element()); - if (element()->list()) + if (element()->hasDataList()) displaySuggestions(DataListSuggestionActivationType::TextChanged); } @@ -897,7 +897,7 @@ void TextFieldInputType::dataListMayHaveChanged() if (!element()) return; m_dataListDropdownIndicator->setInlineStyleProperty(CSSPropertyDisplay, element()->list() ? CSSValueBlock : CSSValueNone, IsImportant::Yes); - if (element()->list() && element()->focused()) + if (element()->hasDataList() && element()->focused()) displaySuggestions(DataListSuggestionActivationType::DataListMayHaveChanged); } @@ -909,7 +909,7 @@ HTMLElement* TextFieldInputType::dataListButtonElement() const void TextFieldInputType::dataListButtonElementWasClicked() { Ref input(*element()); - if (input->list()) { + if (input->hasDataList()) { m_isFocusingWithDataListDropdown = true; unsigned max = visibleValue().length(); input->setSelectionRange(max, max); diff --git a/Source/WebCore/html/shadow/SliderThumbElement.cpp b/Source/WebCore/html/shadow/SliderThumbElement.cpp index 3799b412de756..0118496bab4e8 100644 --- a/Source/WebCore/html/shadow/SliderThumbElement.cpp +++ b/Source/WebCore/html/shadow/SliderThumbElement.cpp @@ -111,7 +111,7 @@ RenderBox::LogicalExtentComputedValues RenderSliderContainer::computeLogicalHeig auto& input = downcast(*element()->shadowHost()); bool isVertical = hasVerticalAppearance(input); - if (input.renderer()->isRenderSlider() && !isVertical && input.list()) { + if (input.renderer()->isRenderSlider() && !isVertical && input.hasDataList()) { int offsetFromCenter = theme().sliderTickOffsetFromTrackCenter(); LayoutUnit trackHeight; if (offsetFromCenter < 0) diff --git a/Source/WebCore/rendering/RenderTheme.cpp b/Source/WebCore/rendering/RenderTheme.cpp index 4f6e2faafb66a..117db1ac4fefb 100644 --- a/Source/WebCore/rendering/RenderTheme.cpp +++ b/Source/WebCore/rendering/RenderTheme.cpp @@ -1222,7 +1222,7 @@ bool RenderTheme::isDefault(const RenderObject& o) const bool RenderTheme::hasListButton(const RenderObject& renderer) const { RefPtr input = dynamicDowncast(renderer.generatingNode()); - return input && input->list(); + return input && input->hasDataList(); } bool RenderTheme::hasListButtonPressed(const RenderObject& renderer) const From 74bbfe455f81ae11b552763a63685308b5b8d649 Mon Sep 17 00:00:00 2001 From: Alice Boxhall Date: Tue, 14 Jan 2025 11:26:21 +1100 Subject: [PATCH 3/5] Split getElement{,sArray}Attribute into internal/bindings versions. Also use these methods in place of TreeScope::getElementById() for non-bindings code. --- .../WebCore/accessibility/AXObjectCache.cpp | 4 +- .../accessibility/AccessibilityObject.cpp | 27 ++------ .../WebCore/bindings/js/JSElementCustom.cpp | 2 +- .../bindings/js/JSElementInternalsCustom.cpp | 2 +- .../WebCore/bindings/scripts/CodeGenerator.pm | 4 +- Source/WebCore/dom/Element.cpp | 68 ++++++++++++------- Source/WebCore/dom/Element.h | 6 +- Source/WebCore/dom/ElementInternals.cpp | 4 +- Source/WebCore/dom/ElementInternals.h | 4 +- Source/WebCore/html/FormListedElement.cpp | 2 +- .../WebCore/html/HTMLFormControlElement.cpp | 4 +- Source/WebCore/html/HTMLInputElement.cpp | 2 +- Source/WebCore/html/HTMLLabelElement.cpp | 11 ++- 13 files changed, 70 insertions(+), 70 deletions(-) diff --git a/Source/WebCore/accessibility/AXObjectCache.cpp b/Source/WebCore/accessibility/AXObjectCache.cpp index 2943424e4eac9..147517a0e6c67 100644 --- a/Source/WebCore/accessibility/AXObjectCache.cpp +++ b/Source/WebCore/accessibility/AXObjectCache.cpp @@ -5275,10 +5275,10 @@ bool AXObjectCache::addRelation(Element& origin, const QualifiedName& attribute) if (!m_document) return false; if (Element::isElementReflectionAttribute(Ref { m_document->settings() }, attribute)) { - if (auto reflectedElement = origin.getElementAttribute(attribute)) + if (auto reflectedElement = origin.getElementForAttributeInternal(attribute)) return addRelation(origin, *reflectedElement, relationType); } else if (Element::isElementsArrayReflectionAttribute(attribute)) { - if (auto reflectedElements = origin.getElementsArrayAttribute(attribute)) { + if (auto reflectedElements = origin.getElementsArrayForAttributeInternal(attribute)) { for (auto reflectedElement : reflectedElements.value()) { if (addRelation(origin, reflectedElement, relationType)) addedRelation = true; diff --git a/Source/WebCore/accessibility/AccessibilityObject.cpp b/Source/WebCore/accessibility/AccessibilityObject.cpp index 5c6bb7a0a17f7..27f74f70ff056 100644 --- a/Source/WebCore/accessibility/AccessibilityObject.cpp +++ b/Source/WebCore/accessibility/AccessibilityObject.cpp @@ -3257,11 +3257,10 @@ bool AccessibilityObject::hasDatalist() const return false; auto element = this->element(); - if (!element) + if (!element || !is(element)) return false; - auto datalist = element->treeScope().getElementById(datalistId); - return is(datalist); + return dynamicDowncast(element)->hasDataList(); } bool AccessibilityObject::supportsSetSize() const @@ -4048,31 +4047,15 @@ Vector> AccessibilityObject::elementsFromAttribute(const QualifiedN if (!element) return { }; - if (Element::isElementReflectionAttribute(document()->settings(), attribute)) { - if (RefPtr reflectedElement = element->getElementAttribute(attribute)) { - Vector> elements; - elements.append(reflectedElement.releaseNonNull()); - return elements; - } - } else if (Element::isElementsArrayReflectionAttribute(attribute)) { - if (auto reflectedElements = element->getElementsArrayAttribute(attribute)) { - return reflectedElements.value(); - } + if (auto elementsFromAttribute = element->getElementsArrayForAttributeInternal(attribute)) { + return elementsFromAttribute.value(); } - auto& idsString = getAttribute(attribute); - if (idsString.isEmpty()) { if (auto* defaultARIA = element->customElementDefaultARIAIfExists()) { return defaultARIA->elementsForAttribute(*element, attribute); } - return { }; - } - auto& treeScope = element->treeScope(); - SpaceSplitString ids(idsString, SpaceSplitString::ShouldFoldCase::No); - return WTF::compactMap(ids, [&](auto& id) { - return treeScope.getElementById(id); - }); + return { }; } #if PLATFORM(COCOA) diff --git a/Source/WebCore/bindings/js/JSElementCustom.cpp b/Source/WebCore/bindings/js/JSElementCustom.cpp index 415a27a23bb2b..2c2e172f83638 100644 --- a/Source/WebCore/bindings/js/JSElementCustom.cpp +++ b/Source/WebCore/bindings/js/JSElementCustom.cpp @@ -99,7 +99,7 @@ static JSValue getElementsArrayAttribute(JSGlobalObject& lexicalGlobalObject, co const_cast(thisObject).putDirect(vm, builtinNames(vm).cachedAttrAssociatedElementsPrivateName(), cachedObject); } - std::optional>> elements = thisObject.wrapped().getElementsArrayAttribute(attributeName); + std::optional>> elements = thisObject.wrapped().getElementsArrayAttributeForBindings(attributeName); auto propertyName = PropertyName(Identifier::fromString(vm, attributeName.toString())); JSValue cachedValue = cachedObject->getDirect(vm, propertyName); if (!cachedValue.isEmpty()) { diff --git a/Source/WebCore/bindings/js/JSElementInternalsCustom.cpp b/Source/WebCore/bindings/js/JSElementInternalsCustom.cpp index e123beed03ee1..1e3b0cb53c70e 100644 --- a/Source/WebCore/bindings/js/JSElementInternalsCustom.cpp +++ b/Source/WebCore/bindings/js/JSElementInternalsCustom.cpp @@ -89,7 +89,7 @@ static JSValue getElementsArrayAttribute(JSGlobalObject& lexicalGlobalObject, co const_cast(thisObject).putDirect(vm, builtinNames(vm).cachedAttrAssociatedElementsPrivateName(), cachedObject); } - std::optional>> elements = thisObject.wrapped().getElementsArrayAttribute(attributeName); + std::optional>> elements = thisObject.wrapped().getElementsArrayAttributeForBindings(attributeName); auto propertyName = PropertyName(Identifier::fromString(vm, attributeName.toString())); JSValue cachedValue = cachedObject->getDirect(vm, propertyName); if (!cachedValue.isEmpty()) { diff --git a/Source/WebCore/bindings/scripts/CodeGenerator.pm b/Source/WebCore/bindings/scripts/CodeGenerator.pm index 8b453a099127b..2322876e21dc7 100644 --- a/Source/WebCore/bindings/scripts/CodeGenerator.pm +++ b/Source/WebCore/bindings/scripts/CodeGenerator.pm @@ -1128,9 +1128,7 @@ sub GetterExpression } elsif ($attributeType->name eq "unsigned long") { $functionName = "getUnsignedIntegralAttribute"; } elsif ($attributeType->name eq "Element") { - $functionName = "getElementAttribute"; - } elsif ($attributeType->name eq "FrozenArray" && scalar @{$attributeType->subtypes} == 1 && @{$attributeType->subtypes}[0]->name eq "Element") { - $functionName = "getElementsArrayAttribute"; + $functionName = "getElementAttributeForBindings"; } else { if ($contentAttributeName eq "WebCore::HTMLNames::idAttr") { $functionName = "getIdAttribute"; diff --git a/Source/WebCore/dom/Element.cpp b/Source/WebCore/dom/Element.cpp index 6208709c1711d..5183f165b362f 100644 --- a/Source/WebCore/dom/Element.cpp +++ b/Source/WebCore/dom/Element.cpp @@ -2327,9 +2327,9 @@ ExplicitlySetAttrElementsMap* Element::explicitlySetAttrElementsMapIfExists() co return hasRareData() ? &elementRareData()->explicitlySetAttrElementsMap() : nullptr; } -static RefPtr getElementByIdIncludingDisconnected(const Element& startElement, const AtomString& id) +static RefPtr getElementByIdInternalIncludingDisconnected(const Element& startElement, const AtomString& id) { - if (id.isEmpty()) + if (id.isNull() || id.isEmpty()) return nullptr; if (LIKELY(startElement.isInTreeScope())) @@ -2349,26 +2349,34 @@ static RefPtr getElementByIdIncludingDisconnected(const Element& startE return nullptr; } -RefPtr Element::getElementAttribute(const QualifiedName& attributeName) const +RefPtr Element::getElementForAttributeInternal(const QualifiedName& attributeName) const { - ASSERT(isElementReflectionAttribute(document().settings(), attributeName)); + RefPtr element = nullptr; + bool hasExplicitlySetElement = false; if (auto* map = explicitlySetAttrElementsMapIfExists()) { auto it = map->find(attributeName); if (it != map->end()) { ASSERT(it->value.size() == 1); - RefPtr element = it->value[0].get(); - if (element && isDescendantOrShadowDescendantOf(element->rootNode())) - return element; - return nullptr; + hasExplicitlySetElement = true; + RefPtr explicitlySetElement = it->value[0].get(); + if (explicitlySetElement && isDescendantOrShadowDescendantOf(explicitlySetElement->rootNode())) + element = explicitlySetElement; } } + + if (!hasExplicitlySetElement) { + const AtomString& id = getAttribute(attributeName); + element = getElementByIdInternalIncludingDisconnected(*this, id); + } - auto id = getAttribute(attributeName); - if (id.isNull()) - return nullptr; + return element; +} - return getElementByIdIncludingDisconnected(*this, id); +RefPtr Element::getElementAttributeForBindings(const QualifiedName& attributeName) const +{ + ASSERT(isElementReflectionAttribute(document().settings(), attributeName)); + return getElementForAttributeInternal(attributeName); } void Element::setElementAttribute(const QualifiedName& attributeName, Element* element) @@ -2390,13 +2398,16 @@ void Element::setElementAttribute(const QualifiedName& attributeName, Element* e cache->updateRelations(*this, attributeName); } -std::optional>> Element::getElementsArrayAttribute(const QualifiedName& attributeName) const +std::optional>> Element::getElementsArrayForAttributeInternal(const QualifiedName& attributeName) const { - ASSERT(isElementsArrayReflectionAttribute(attributeName)); + std::optional>> elements; + bool hasExplicitlySetElements = false; if (auto* map = explicitlySetAttrElementsMapIfExists()) { - if (auto it = map->find(attributeName); it != map->end()) { - return compactMap(it->value, [&](auto& weakElement) -> std::optional> { + auto it = map->find(attributeName); + if (it != map->end()) { + hasExplicitlySetElements = true; + elements = compactMap(it->value, [&](auto& weakElement) -> std::optional> { RefPtr element = weakElement.get(); if (element && isDescendantOrShadowDescendantOf(element->rootNode())) return element.releaseNonNull(); @@ -2405,17 +2416,24 @@ std::optional>> Element::getElementsArrayAttribute(const Qua } } - auto attr = attributeName; - if (attr == HTMLNames::aria_labelledbyAttr && !hasAttribute(HTMLNames::aria_labelledbyAttr) && hasAttribute(HTMLNames::aria_labeledbyAttr)) - attr = HTMLNames::aria_labeledbyAttr; + if (!hasExplicitlySetElements) { + auto attr = attributeName; + if (attr == HTMLNames::aria_labelledbyAttr && !hasAttribute(HTMLNames::aria_labelledbyAttr) && hasAttribute(HTMLNames::aria_labeledbyAttr)) + attr = HTMLNames::aria_labeledbyAttr; - if (!hasAttribute(attr)) - return std::nullopt; + SpaceSplitString ids(getAttribute(attr), SpaceSplitString::ShouldFoldCase::No); + elements = compactMap(ids, [&](auto& id) { + return getElementByIdInternalIncludingDisconnected(*this, id); + }); + } - SpaceSplitString ids(getAttribute(attr), SpaceSplitString::ShouldFoldCase::No); - return WTF::compactMap(ids, [&](auto& id) { - return getElementByIdIncludingDisconnected(*this, id); - }); + return elements; +} + +std::optional>> Element::getElementsArrayAttributeForBindings(const QualifiedName& attributeName) const +{ + ASSERT(isElementsArrayReflectionAttribute(attributeName)); + return getElementsArrayForAttributeInternal(attributeName); } void Element::setElementsArrayAttribute(const QualifiedName& attributeName, std::optional>>&& elements) diff --git a/Source/WebCore/dom/Element.h b/Source/WebCore/dom/Element.h index 274ca55b855c4..c074b89faf69d 100644 --- a/Source/WebCore/dom/Element.h +++ b/Source/WebCore/dom/Element.h @@ -184,9 +184,9 @@ class Element : public ContainerNode { WEBCORE_EXPORT void setIntegralAttribute(const QualifiedName& attributeName, int value); WEBCORE_EXPORT unsigned getUnsignedIntegralAttribute(const QualifiedName& attributeName) const; WEBCORE_EXPORT void setUnsignedIntegralAttribute(const QualifiedName& attributeName, unsigned value); - WEBCORE_EXPORT RefPtr getElementAttribute(const QualifiedName& attributeName) const; + WEBCORE_EXPORT RefPtr getElementAttributeForBindings(const QualifiedName& attributeName) const; WEBCORE_EXPORT void setElementAttribute(const QualifiedName& attributeName, Element* value); - WEBCORE_EXPORT std::optional>> getElementsArrayAttribute(const QualifiedName& attributeName) const; + WEBCORE_EXPORT std::optional>> getElementsArrayAttributeForBindings(const QualifiedName& attributeName) const; WEBCORE_EXPORT void setElementsArrayAttribute(const QualifiedName& attributeName, std::optional>>&& value); static bool isElementReflectionAttribute(const Settings&, const QualifiedName&); static bool isElementsArrayReflectionAttribute(const QualifiedName&); @@ -221,6 +221,8 @@ class Element : public ContainerNode { WEBCORE_EXPORT const AtomString& getAttributeNS(const AtomString& namespaceURI, const AtomString& localName) const; AtomString getAttributeForBindings(const AtomString& qualifiedName, ResolveURLs = ResolveURLs::NoExcludingURLsForPrivacy) const; inline AtomString getAttributeNSForBindings(const AtomString& namespaceURI, const AtomString& localName, ResolveURLs = ResolveURLs::NoExcludingURLsForPrivacy) const; + RefPtr getElementForAttributeInternal(const QualifiedName& attributeName) const; + std::optional>> getElementsArrayForAttributeInternal(const QualifiedName& attributeName) const; WEBCORE_EXPORT ExceptionOr setAttribute(const AtomString& qualifiedName, const AtomString& value); ExceptionOr setAttribute(const AtomString& qualifiedName, const TrustedTypeOrString& value); diff --git a/Source/WebCore/dom/ElementInternals.cpp b/Source/WebCore/dom/ElementInternals.cpp index 8365b1ad0285c..92cb60ae3d9af 100644 --- a/Source/WebCore/dom/ElementInternals.cpp +++ b/Source/WebCore/dom/ElementInternals.cpp @@ -154,7 +154,7 @@ const AtomString& ElementInternals::attributeWithoutSynchronization(const Qualif return defaultARIA ? defaultARIA->valueForAttribute(*element, name) : nullAtom(); } -RefPtr ElementInternals::getElementAttribute(const QualifiedName& name) const +RefPtr ElementInternals::getElementAttributeForBindings(const QualifiedName& name) const { RefPtr element = m_element.get(); CheckedPtr defaultARIA = m_element->customElementDefaultARIAIfExists(); @@ -172,7 +172,7 @@ void ElementInternals::setElementAttribute(const QualifiedName& name, Element* v cache->deferAttributeChangeIfNeeded(*element, name, oldValue, computeValueForAttribute(*element, name)); } -std::optional>> ElementInternals::getElementsArrayAttribute(const QualifiedName& name) const +std::optional>> ElementInternals::getElementsArrayAttributeForBindings(const QualifiedName& name) const { RefPtr element = m_element.get(); CheckedPtr defaultARIA = m_element->customElementDefaultARIAIfExists(); diff --git a/Source/WebCore/dom/ElementInternals.h b/Source/WebCore/dom/ElementInternals.h index db9f300c60354..a2b6c160138ef 100644 --- a/Source/WebCore/dom/ElementInternals.h +++ b/Source/WebCore/dom/ElementInternals.h @@ -68,9 +68,9 @@ class ElementInternals final : public ScriptWrappable, public RefCounted getElementAttribute(const QualifiedName&) const; + RefPtr getElementAttributeForBindings(const QualifiedName&) const; void setElementAttribute(const QualifiedName&, Element*); - std::optional>> getElementsArrayAttribute(const QualifiedName&) const; + std::optional>> getElementsArrayAttributeForBindings(const QualifiedName&) const; void setElementsArrayAttribute(const QualifiedName&, std::optional>>&&); CustomStateSet& states(); diff --git a/Source/WebCore/html/FormListedElement.cpp b/Source/WebCore/html/FormListedElement.cpp index 0db53ce100196..9bcc8a54c0cdf 100644 --- a/Source/WebCore/html/FormListedElement.cpp +++ b/Source/WebCore/html/FormListedElement.cpp @@ -104,7 +104,7 @@ static RefPtr findAssociatedForm(const HTMLElement& element, HT // the first element in the document to have an ID that equal to // the value of form attribute, so we put the result of // treeScope().getElementById() over the given element. - RefPtr newFormCandidate = dynamicDowncast(element.treeScope().getElementById(formId)); + RefPtr newFormCandidate = dynamicDowncast(element.getElementForAttributeInternal(formAttr)); if (!newFormCandidate) return nullptr; if (&element.traverseToRootNode() == &element.treeScope().rootNode()) { diff --git a/Source/WebCore/html/HTMLFormControlElement.cpp b/Source/WebCore/html/HTMLFormControlElement.cpp index 88c0cc2f52d4a..ceec006cdb31b 100644 --- a/Source/WebCore/html/HTMLFormControlElement.cpp +++ b/Source/WebCore/html/HTMLFormControlElement.cpp @@ -371,7 +371,7 @@ RefPtr HTMLFormControlElement::popoverTargetElement() const if (form() && isSubmitButton()) return nullptr; - RefPtr element = dynamicDowncast(getElementAttribute(popovertargetAttr)); + RefPtr element = dynamicDowncast(getElementForAttributeInternal(popovertargetAttr)); if (element && element->popoverState() != PopoverState::None) return element; return nullptr; @@ -433,7 +433,7 @@ RefPtr HTMLFormControlElement::commandForElement() const if (!canInvoke(*this)) return nullptr; - return getElementAttribute(commandforAttr); + return getElementForAttributeInternal(commandforAttr); } constexpr ASCIILiteral togglePopoverLiteral = "togglepopover"_s; diff --git a/Source/WebCore/html/HTMLInputElement.cpp b/Source/WebCore/html/HTMLInputElement.cpp index 13e405446f0aa..81810def99011 100644 --- a/Source/WebCore/html/HTMLInputElement.cpp +++ b/Source/WebCore/html/HTMLInputElement.cpp @@ -1900,7 +1900,7 @@ RefPtr HTMLInputElement::dataList() const if (!m_hasNonEmptyList || !m_inputType->shouldRespectListAttribute()) return nullptr; - return dynamicDowncast(treeScope().getElementById(attributeWithoutSynchronization(listAttr))); + return dynamicDowncast(getElementForAttributeInternal(listAttr)); } void HTMLInputElement::resetListAttributeTargetObserver() diff --git a/Source/WebCore/html/HTMLLabelElement.cpp b/Source/WebCore/html/HTMLLabelElement.cpp index 960c86f88c919..30ac00000a1e0 100644 --- a/Source/WebCore/html/HTMLLabelElement.cpp +++ b/Source/WebCore/html/HTMLLabelElement.cpp @@ -44,9 +44,9 @@ WTF_MAKE_TZONE_OR_ISO_ALLOCATED_IMPL(HTMLLabelElement); using namespace HTMLNames; -static HTMLElement* firstElementWithIdIfLabelable(TreeScope& treeScope, const AtomString& id) +static HTMLElement* elementForAttributeIfLabelable(const HTMLLabelElement& context, const QualifiedName& attributeName) { - if (RefPtr element = treeScope.getElementById(id)) { + if (RefPtr element = context.getElementForAttributeInternal(attributeName)) { if (auto* labelableElement = dynamicDowncast(*element)) { if (labelableElement->isLabelable()) return labelableElement; @@ -73,18 +73,17 @@ Ref HTMLLabelElement::create(Document& document) RefPtr HTMLLabelElement::control() const { - auto& controlId = attributeWithoutSynchronization(forAttr); - if (controlId.isNull()) { + if (!hasAttributeWithoutSynchronization(forAttr)) { // Search the children and descendants of the label element for a form element. // per http://dev.w3.org/html5/spec/Overview.html#the-label-element // the form element must be "labelable form-associated element". - for (const auto& labelableElement : descendantsOfType(*this)) { + for (const HTMLElement& labelableElement : descendantsOfType(*this)) { if (labelableElement.isLabelable()) return const_cast(&labelableElement); } return nullptr; } - return isConnected() ? firstElementWithIdIfLabelable(treeScope(), controlId) : nullptr; + return isConnected() ? elementForAttributeIfLabelable(*this, forAttr) : nullptr; } RefPtr HTMLLabelElement::controlForBindings() const From fe0cce5b386f2ea2ffe39c70a09d9f30a9cc3de2 Mon Sep 17 00:00:00 2001 From: Alice Boxhall Date: Thu, 16 Jan 2025 14:48:06 +1100 Subject: [PATCH 4/5] Add referenceTarget support and WPT tests. --- .../reference-target/tentative/README.md | 9 + .../tentative/anchor-expected.txt | 6 + .../reference-target/tentative/anchor.html | 109 + .../tentative/aria-labelledby-expected.txt | 6 + .../tentative/aria-labelledby.html | 65 + .../tentative/dom-mutation-expected.txt | 7 + .../tentative/dom-mutation.html | 66 + .../tentative/label-descendant-expected.txt | 9 + .../tentative/label-descendant.html | 102 + .../tentative/label-for-expected.txt | 7 + .../reference-target/tentative/label-for.html | 101 + .../tentative/popovertarget-expected.txt | 6 + .../tentative/popovertarget.html | 61 + .../property-reflection-expected.txt | 4142 +++++++++++++++++ .../tentative/property-reflection.html | 121 + .../reference-target-basics-expected.txt | 6 + .../tentative/reference-target-basics.html | 72 + .../reference-target/tentative/w3c-import.log | 25 + .../Preferences/UnifiedWebPreferences.yaml | 15 + .../WebCore/accessibility/AXObjectCache.cpp | 15 +- .../WebCore/dom/CustomElementDefaultARIA.cpp | 1 + Source/WebCore/dom/Element.cpp | 70 +- Source/WebCore/dom/Element.h | 4 +- Source/WebCore/dom/ShadowRoot.cpp | 26 + Source/WebCore/dom/ShadowRoot.h | 7 + Source/WebCore/dom/ShadowRoot.idl | 1 + Source/WebCore/dom/ShadowRootInit.h | 1 + Source/WebCore/dom/ShadowRootInit.idl | 1 + Source/WebCore/html/FormAssociatedElement.cpp | 9 +- Source/WebCore/html/FormListedElement.cpp | 3 +- Source/WebCore/html/HTMLAttributeNames.in | 1 + Source/WebCore/html/HTMLFormElement.cpp | 6 +- Source/WebCore/html/HTMLInputElement.cpp | 10 +- Source/WebCore/html/HTMLLabelElement.cpp | 38 +- Source/WebCore/html/HTMLLegendElement.cpp | 10 +- Source/WebCore/html/HTMLOptionElement.cpp | 10 +- Source/WebCore/html/HTMLTemplateElement.cpp | 15 +- Source/WebCore/html/HTMLTemplateElement.h | 3 + Source/WebCore/html/HTMLTemplateElement.idl | 1 + .../html/parser/HTMLConstructionSite.cpp | 5 +- 40 files changed, 5151 insertions(+), 21 deletions(-) create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/README.md create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/anchor-expected.txt create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/anchor.html create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/aria-labelledby-expected.txt create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/aria-labelledby.html create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/dom-mutation-expected.txt create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/dom-mutation.html create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-descendant-expected.txt create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-descendant.html create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-for-expected.txt create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-for.html create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/popovertarget-expected.txt create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/popovertarget.html create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/property-reflection-expected.txt create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/property-reflection.html create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/reference-target-basics-expected.txt create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/reference-target-basics.html create mode 100644 LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/w3c-import.log diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/README.md b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/README.md new file mode 100644 index 0000000000000..5c43d245d8a94 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/README.md @@ -0,0 +1,9 @@ +# Reference Target tentative tests + +Tests in this directory are for the proposed Reference Target feature for +shadow dom. This is not yet standardized and browsers should not be expected to +pass these tests. + +See the explainer at +https://github.com/WICG/aom/blob/gh-pages/reference-target-explainer.md for +more information about the API. diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/anchor-expected.txt b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/anchor-expected.txt new file mode 100644 index 0000000000000..53ebd6f9f4fc1 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/anchor-expected.txt @@ -0,0 +1,6 @@ +Popover content + +FAIL ShadowRoot ReferenceTarget works with anchor attribute. assert_equals: popover.offsetLeft expected 100 but got 682 +FAIL ShadowRoot ReferenceTarget works with anchor attribute via options. assert_equals: popover.offsetLeft expected 100 but got 682 +FAIL ShadowRoot ReferenceTarget works with .anchorElement property. assert_equals: popover.offsetLeft expected 100 but got 682 + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/anchor.html b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/anchor.html new file mode 100644 index 0000000000000..0e05da8bb34aa --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/anchor.html @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + +
+ + + +
Popover content
+
+ +
+ +
Popover content
+
+ + +
+ + + +
Popover content
+
+ + + + + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/aria-labelledby-expected.txt b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/aria-labelledby-expected.txt new file mode 100644 index 0000000000000..4410de531f42b --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/aria-labelledby-expected.txt @@ -0,0 +1,6 @@ + Label 2 + +PASS Label 1 +PASS Label 2 +PASS Label 3 + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/aria-labelledby.html b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/aria-labelledby.html new file mode 100644 index 0000000000000..db40362e5b0f6 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/aria-labelledby.html @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + +Label 2 + + + + + + + + + + + + + + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/dom-mutation-expected.txt b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/dom-mutation-expected.txt new file mode 100644 index 0000000000000..76681bea7beb4 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/dom-mutation-expected.txt @@ -0,0 +1,7 @@ + + +FAIL Changing the ID of the referenced element updates the computed label assert_equals: expected "Outside the label Label 1 Label 2" but got "" +FAIL Removing the referenced element updates the computed label assert_equals: expected "Outside the label Label 2" but got "" +PASS New referenced element prepended to the shadow supercedes the existing label +PASS Changing the reference target ID updates the computed label + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/dom-mutation.html b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/dom-mutation.html new file mode 100644 index 0000000000000..027fb27489a01 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/dom-mutation.html @@ -0,0 +1,66 @@ + + + + + + + + + + + + +
+ + + + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-descendant-expected.txt b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-descendant-expected.txt new file mode 100644 index 0000000000000..13bf290f8c971 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-descendant-expected.txt @@ -0,0 +1,9 @@ +Input 1 +Input 1 via Options +Input 2 Input 2 via Options + +PASS Label applies to descendant custom element that uses shadowrootreferencetarget (Input 1) +PASS Label applies to descendant custom element that uses shadowrootreferencetarget (Input 1 via Options) +PASS Label applies to multiple layers of descendant custom elements that use shadowrootreferencetarget (Input 2) +PASS Label applies to multiple layers of descendant custom elements that use shadowrootreferencetarget (Input 2 via Options) + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-descendant.html b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-descendant.html new file mode 100644 index 0000000000000..823dabf81c486 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-descendant.html @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-for-expected.txt b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-for-expected.txt new file mode 100644 index 0000000000000..b6b0d440e277e --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-for-expected.txt @@ -0,0 +1,7 @@ +Input 1 Input 2 A F Input 4 + +PASS Label for attribute targets a custom element using shadowrootreferencetarget +PASS Label for attribute targets a custom element using shadowrootreferencetarget inside multiple layers of shadow roots +PASS Multiple labels targeting a custom element using shadowrootreferencetarget inside multiple layers of shadow roots +PASS Setting .htmlFor property to target a custom element using shadowrootreferencetarget + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-for.html b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-for.html new file mode 100644 index 0000000000000..81885311bf81b --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/label-for.html @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/popovertarget-expected.txt b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/popovertarget-expected.txt new file mode 100644 index 0000000000000..351802339eee4 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/popovertarget-expected.txt @@ -0,0 +1,6 @@ +Toggle the popover Toggle the popover Toggle the popover + +PASS Shadow root reference target works with popovertarget attribute. +PASS Shadow root reference target works with popovertarget attribute via options. +PASS Shadow root reference target works with .popoverTargetElement property. + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/popovertarget.html b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/popovertarget.html new file mode 100644 index 0000000000000..564ddab912381 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/popovertarget.html @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/property-reflection-expected.txt b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/property-reflection-expected.txt new file mode 100644 index 0000000000000..b7bde95cef3d4 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/property-reflection-expected.txt @@ -0,0 +1,4142 @@ + +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS button.form has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS input.form has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS input.list has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to button with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to input with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to meter with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to output with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to progress with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to select with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to textarea with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to div with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to object with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to label with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to fieldset with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to legend with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to option with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to datalist with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to form with reference targetappendTestDeclaratively +PASS output.form has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS select.form has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS textarea.form has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS object.form has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to button with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS label.control has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to input with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS label.control has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to meter with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS label.control has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to output with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS label.control has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to progress with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS label.control has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to select with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS label.control has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to textarea with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS label.control has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to div with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS label.control has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to object with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS label.control has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to label with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS label.control has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.control has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to legend with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS label.control has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to option with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS label.control has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to datalist with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS label.control has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to form with reference targetappendTestDeclaratively +PASS label.form has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS label.control has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS fieldset.form has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS legend.form has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to button with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to input with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to meter with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to output with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to progress with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to select with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to div with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to object with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to label with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to legend with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to option with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestDeclaratively +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS option.form has reflection behavior IsNull when pointing to form with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestDeclaratively +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestDeclaratively +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestDeclaratively +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS button.commandForElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS button.popoverTargetElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS button.form has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS input.commandForElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS input.popoverTargetElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS input.form has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS input.list has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to button with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to input with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to meter with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to output with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to progress with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to select with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to textarea with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to div with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to object with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to label with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to fieldset with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to legend with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to option with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to datalist with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to form with reference targetappendTestWithOptions +PASS output.form has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS select.form has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS textarea.form has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS object.form has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to button with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS label.control has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to input with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS label.control has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to meter with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS label.control has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to output with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS label.control has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to progress with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS label.control has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to select with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS label.control has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to textarea with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS label.control has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to div with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS label.control has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to object with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS label.control has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to label with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS label.control has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to fieldset with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS label.control has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to legend with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS label.control has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to option with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS label.control has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to datalist with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS label.control has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS label.htmlFor has reflection behavior ReflectsHostID when pointing to form with reference targetappendTestWithOptions +PASS label.form has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS label.control has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS fieldset.form has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS legend.form has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to button with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to input with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to meter with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to output with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to progress with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to select with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to textarea with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to div with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to object with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to label with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to fieldset with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to legend with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to option with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to datalist with reference targetappendTestWithOptions +PASS option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS option.form has reflection behavior IsNull when pointing to form with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference targetappendTestWithOptions +PASS form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference targetappendTestWithOptions +PASS form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions +PASS form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference targetappendTestWithOptions + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/property-reflection.html b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/property-reflection.html new file mode 100644 index 0000000000000..3807698883a27 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/property-reflection.html @@ -0,0 +1,121 @@ + + + + + + + + + + + + +
+ + + + diff --git a/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/reference-target-basics-expected.txt b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/reference-target-basics-expected.txt new file mode 100644 index 0000000000000..82db83c1a63c5 --- /dev/null +++ b/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/reference-target/tentative/reference-target-basics-expected.txt @@ -0,0 +1,6 @@ + +PASS ShadowRoot.referenceTarget defaults to empty string when shadow is created declaratively +PASS