diff --git a/Libraries/LibWeb/ARIA/ARIAMixin.cpp b/Libraries/LibWeb/ARIA/ARIAMixin.cpp index b34f0a3775d..6cb0da7b659 100644 --- a/Libraries/LibWeb/ARIA/ARIAMixin.cpp +++ b/Libraries/LibWeb/ARIA/ARIAMixin.cpp @@ -230,4 +230,17 @@ Vector ARIAMixin::parse_id_reference_list(Optional const& id_lis return result; } +#define __ENUMERATE_ARIA_ATTRIBUTE(attribute, referencing_attribute) \ + Optional>> const& ARIAMixin::attribute() const \ + { \ + return m_##attribute; \ + } \ + \ + void ARIAMixin::set_##attribute(Optional>> value) \ + { \ + m_##attribute = move(value); \ + } +ENUMERATE_ARIA_ELEMENT_LIST_REFERENCING_ATTRIBUTES +#undef __ENUMERATE_ARIA_ATTRIBUTE + } diff --git a/Libraries/LibWeb/ARIA/ARIAMixin.h b/Libraries/LibWeb/ARIA/ARIAMixin.h index 552d323d4bc..773ab5ebac5 100644 --- a/Libraries/LibWeb/ARIA/ARIAMixin.h +++ b/Libraries/LibWeb/ARIA/ARIAMixin.h @@ -15,6 +15,15 @@ namespace Web::ARIA { +#define ENUMERATE_ARIA_ELEMENT_LIST_REFERENCING_ATTRIBUTES \ + __ENUMERATE_ARIA_ATTRIBUTE(aria_controls_elements, aria_controls) \ + __ENUMERATE_ARIA_ATTRIBUTE(aria_described_by_elements, aria_described_by) \ + __ENUMERATE_ARIA_ATTRIBUTE(aria_details_elements, aria_details) \ + __ENUMERATE_ARIA_ATTRIBUTE(aria_error_message_elements, aria_error_message) \ + __ENUMERATE_ARIA_ATTRIBUTE(aria_flow_to_elements, aria_flow_to) \ + __ENUMERATE_ARIA_ATTRIBUTE(aria_labelled_by_elements, aria_labelled_by) \ + __ENUMERATE_ARIA_ATTRIBUTE(aria_owns_elements, aria_owns) + class ARIAMixin { public: virtual ~ARIAMixin(); @@ -51,6 +60,12 @@ public: GC::Ptr aria_active_descendant_element() { return m_aria_active_descendant_element; } void set_aria_active_descendant_element(GC::Ptr value) { m_aria_active_descendant_element = value; } +#define __ENUMERATE_ARIA_ATTRIBUTE(attribute, referencing_attribute) \ + Optional>> const& attribute() const; \ + void set_##attribute(Optional>> value); + ENUMERATE_ARIA_ELEMENT_LIST_REFERENCING_ATTRIBUTES +#undef __ENUMERATE_ARIA_ATTRIBUTE + protected: ARIAMixin(); @@ -60,6 +75,11 @@ protected: private: GC::Ptr m_aria_active_descendant_element; + +#define __ENUMERATE_ARIA_ATTRIBUTE(attribute, referencing_attribute) \ + Optional>> m_##attribute; + ENUMERATE_ARIA_ELEMENT_LIST_REFERENCING_ATTRIBUTES +#undef __ENUMERATE_ARIA_ATTRIBUTE }; } diff --git a/Libraries/LibWeb/ARIA/ARIAMixin.idl b/Libraries/LibWeb/ARIA/ARIAMixin.idl index a2782893099..b57921ad1d3 100644 --- a/Libraries/LibWeb/ARIA/ARIAMixin.idl +++ b/Libraries/LibWeb/ARIA/ARIAMixin.idl @@ -12,21 +12,28 @@ interface mixin ARIAMixin { [CEReactions] attribute DOMString? ariaColIndex; [CEReactions] attribute DOMString? ariaColIndexText; [CEReactions] attribute DOMString? ariaColSpan; + [Reflect=aria-controls, CEReactions] attribute sequence? ariaControlsElements; // FIXME: Should `FrozenArray?` [CEReactions] attribute DOMString? ariaCurrent; + [Reflect=aria-describedby, CEReactions] attribute sequence? ariaDescribedByElements; // FIXME: Should `FrozenArray?` [CEReactions] attribute DOMString? ariaDescription; + [Reflect=aria-details, CEReactions] attribute sequence? ariaDetailsElements; // FIXME: Should `FrozenArray?` [CEReactions] attribute DOMString? ariaDisabled; + [Reflect=aria-errormessage, CEReactions] attribute sequence? ariaErrorMessageElements; // FIXME: Should `FrozenArray?` [CEReactions] attribute DOMString? ariaExpanded; + [Reflect=aria-flowto, CEReactions] attribute sequence? ariaFlowToElements; // FIXME: Should `FrozenArray?` [CEReactions] attribute DOMString? ariaHasPopup; [CEReactions] attribute DOMString? ariaHidden; [CEReactions] attribute DOMString? ariaInvalid; [CEReactions] attribute DOMString? ariaKeyShortcuts; [CEReactions] attribute DOMString? ariaLabel; + [Reflect=aria-labelledby, CEReactions] attribute sequence? ariaLabelledByElements; // FIXME: Should `FrozenArray?` [CEReactions] attribute DOMString? ariaLevel; [CEReactions] attribute DOMString? ariaLive; [CEReactions] attribute DOMString? ariaModal; [CEReactions] attribute DOMString? ariaMultiLine; [CEReactions] attribute DOMString? ariaMultiSelectable; [CEReactions] attribute DOMString? ariaOrientation; + [Reflect=aria-owns, CEReactions] attribute sequence? ariaOwnsElements; // FIXME: Should `FrozenArray?` [CEReactions] attribute DOMString? ariaPlaceholder; [CEReactions] attribute DOMString? ariaPosInSet; [CEReactions] attribute DOMString? ariaPressed; diff --git a/Libraries/LibWeb/DOM/Element.cpp b/Libraries/LibWeb/DOM/Element.cpp index 5622ec8af08..41873234d7d 100644 --- a/Libraries/LibWeb/DOM/Element.cpp +++ b/Libraries/LibWeb/DOM/Element.cpp @@ -430,6 +430,60 @@ Vector Element::get_attribute_names() const return names; } +// https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#attr-associated-elements +Optional>> Element::get_the_attribute_associated_elements(FlyString const& content_attribute, Optional>> const& explicitly_set_attribute_elements) const +{ + // 1. Let elements be an empty list. + GC::RootVector> elements(heap()); + + // 2. Let element be the result of running reflectedTarget's get the element. + auto const& element = *this; + + // 3. If reflectedTarget's explicitly set attr-elements is not null: + if (explicitly_set_attribute_elements.has_value()) { + // 1. For each attrElement in reflectedTarget's explicitly set attr-elements: + for (auto const& attribute_element : *explicitly_set_attribute_elements) { + // 1. If attrElement is not a descendant of any of element's shadow-including ancestors, then continue. + if (!attribute_element || &attribute_element->root() != &element.shadow_including_root()) + continue; + + // 2. Append attrElement to elements. + elements.append(*attribute_element); + } + } + // 4. Otherwise: + else { + // 1. Let contentAttributeValue be the result of running reflectedTarget's get the content attribute. + auto content_attribute_value = element.get_attribute(content_attribute); + + // 2. If contentAttributeValue is null, then return null. + if (!content_attribute_value.has_value()) + return {}; + + // 3. Let tokens be contentAttributeValue, split on ASCII whitespace. + auto tokens = content_attribute_value->bytes_as_string_view().split_view_if(Infra::is_ascii_whitespace); + + // 4. For each id of tokens: + for (auto id : tokens) { + // 1. Let candidate be the first element, in tree order, that meets the following criteria: + // * candidate's root is the same as element's root; + // * candidate's ID is id; and + // * candidate implements T. + auto candidate = element.document().get_element_by_id(MUST(FlyString::from_utf8(id))); + + // 2. If no such element exists, then continue. + if (!candidate) + continue; + + // 3. Append candidate to elements. + elements.append(*candidate); + } + } + + // 5. Return elements. + return elements; +} + GC::Ptr Element::create_layout_node(GC::Ref style) { if (local_name() == "noscript" && document().is_scripting_enabled()) @@ -3609,6 +3663,17 @@ void Element::attribute_changed(FlyString const& local_name, Optional co // Set element's explicitly set attr-element to null. set_aria_active_descendant_element({}); } + + // https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#reflecting-content-attributes-in-idl-attributes:concept-element-attributes-change-ext-2 + // 1. If localName is not attr or namespace is not null, then return. + // 2. Set element's explicitly set attr-elements to null. +#define __ENUMERATE_ARIA_ATTRIBUTE(attribute, referencing_attribute) \ + else if (local_name == ARIA::AttributeNames::referencing_attribute && !namespace_.has_value()) \ + { \ + set_##attribute({}); \ + } + ENUMERATE_ARIA_ELEMENT_LIST_REFERENCING_ATTRIBUTES +#undef __ENUMERATE_ARIA_ATTRIBUTE } auto Element::ensure_custom_element_reaction_queue() -> CustomElementReactionQueue& diff --git a/Libraries/LibWeb/DOM/Element.h b/Libraries/LibWeb/DOM/Element.h index 5fb0dfcffa4..155620ae1f6 100644 --- a/Libraries/LibWeb/DOM/Element.h +++ b/Libraries/LibWeb/DOM/Element.h @@ -163,6 +163,8 @@ public: GC::Ptr get_attribute_node(FlyString const& name) const; GC::Ptr get_attribute_node_ns(Optional const& namespace_, FlyString const& name) const; + Optional>> get_the_attribute_associated_elements(FlyString const& content_attribute, Optional>> const& explicitly_set_attribute_elements) const; + DOMTokenList* class_list(); WebIDL::ExceptionOr> attach_shadow(ShadowRootInit init); diff --git a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp index 11be8b0114f..93fabd186c8 100644 --- a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp @@ -172,6 +172,18 @@ static StringView sequence_storage_type_to_cpp_storage_type_name(SequenceStorage } } +static bool is_nullable_sequence_of_single_type(Type const& type, StringView type_name) +{ + if (!type.is_nullable() || !type.is_sequence()) + return false; + + auto const& parameters = type.as_parameterized().parameters(); + if (parameters.size() != 1) + return false; + + return parameters.first()->name() == type_name; +} + CppType idl_type_name_to_cpp_type(Type const& type, Interface const& interface); static ByteString union_type_to_variant(UnionType const& union_type, Interface const& interface) @@ -1024,21 +1036,15 @@ static void generate_to_cpp(SourceGenerator& generator, ParameterType& parameter // 3. If method is undefined, throw a TypeError. // 4. Return the result of creating a sequence from V and method. - if (optional) { + if (optional || parameter.type->is_nullable()) { auto sequence_cpp_type = idl_type_name_to_cpp_type(parameterized_type.parameters().first(), interface); sequence_generator.set("sequence.type", sequence_cpp_type.name); sequence_generator.set("sequence.storage_type", sequence_storage_type_to_cpp_storage_type_name(sequence_cpp_type.sequence_storage_type)); if (!optional_default_value.has_value()) { - if (sequence_cpp_type.sequence_storage_type == IDL::SequenceStorageType::Vector) { - sequence_generator.append(R"~~~( + sequence_generator.append(R"~~~( Optional<@sequence.storage_type@<@sequence.type@>> @cpp_name@; )~~~"); - } else { - sequence_generator.append(R"~~~( - Optional<@sequence.storage_type@> @cpp_name@; -)~~~"); - } } else { if (optional_default_value != "[]") TODO(); @@ -1054,9 +1060,15 @@ static void generate_to_cpp(SourceGenerator& generator, ParameterType& parameter } } - sequence_generator.append(R"~~~( + if (optional) { + sequence_generator.append(R"~~~( if (!@js_name@@js_suffix@.is_undefined()) { )~~~"); + } else { + sequence_generator.append(R"~~~( + if (!@js_name@@js_suffix@.is_nullish()) { +)~~~"); + } } sequence_generator.append(R"~~~( @@ -1068,9 +1080,9 @@ static void generate_to_cpp(SourceGenerator& generator, ParameterType& parameter return vm.throw_completion(JS::ErrorType::NotIterable, @js_name@@js_suffix@.to_string_without_side_effects()); )~~~"); - parameterized_type.generate_sequence_from_iterable(sequence_generator, ByteString::formatted("{}{}", acceptable_cpp_name, optional ? "_non_optional" : ""), ByteString::formatted("{}{}", js_name, js_suffix), ByteString::formatted("{}{}_iterator_method{}", js_name, js_suffix, recursion_depth), interface, recursion_depth + 1); + parameterized_type.generate_sequence_from_iterable(sequence_generator, ByteString::formatted("{}{}", acceptable_cpp_name, optional || parameter.type->is_nullable() ? "_non_optional" : ""), ByteString::formatted("{}{}", js_name, js_suffix), ByteString::formatted("{}{}_iterator_method{}", js_name, js_suffix, recursion_depth), interface, recursion_depth + 1); - if (optional) { + if (optional || parameter.type->is_nullable()) { sequence_generator.append(R"~~~( @cpp_name@ = move(@cpp_name@_non_optional); } @@ -4060,6 +4072,24 @@ JS_DEFINE_NATIVE_FUNCTION(@class_name@::@attribute.getter_callback@) } )~~~"); + } + // If a reflected IDL attribute has the type FrozenArray?, where T is either Element or an interface that + // inherits from Element, then with attr being the reflected content attribute name: + // FIXME: Handle "an interface that inherits from Element". + // FIXME: This should handle "FrozenArray" rather than "sequence". + else if (is_nullable_sequence_of_single_type(attribute.type, "Element"sv)) { + // 1. Let elements be the result of running this's get the attr-associated elements. + attribute_generator.append(R"~~~( + static auto content_attribute = "@attribute.reflect_name@"_fly_string; + + auto retval = impl->get_the_attribute_associated_elements(content_attribute, TRY(throw_dom_exception_if_needed(vm, [&] { return impl->@attribute.cpp_name@(); }))); +)~~~"); + + // FIXME: 2. If the contents of elements is equal to the contents of this's cached attr-associated elements, then return + // this's cached attr-associated elements object. + // FIXME: 3. Let elementsAsFrozenArray be elements, converted to a FrozenArray?. + // FIXME: 4. Set this's cached attr-associated elements to elements. + // FIXME: 5. Set this's cached attr-associated elements object to elementsAsFrozenArray. } else { attribute_generator.append(R"~~~( auto retval = impl->get_attribute_value("@attribute.reflect_name@"_fly_string); @@ -4202,6 +4232,45 @@ JS_DEFINE_NATIVE_FUNCTION(@class_name@::@attribute.setter_callback@) // 3. Set this's explicitly set attr-element to a weak reference to the given value. attribute_generator.append(R"~~~( TRY(throw_dom_exception_if_needed(vm, [&] { return impl->set_@attribute.cpp_name@(cpp_value); })); +)~~~"); + } + // If a reflected IDL attribute has the type FrozenArray?, where T is either Element or an interface + // that inherits from Element, then with attr being the reflected content attribute name: + // FIXME: Handle "an interface that inherits from Element". + // FIXME: This should handle "FrozenArray" rather than "sequence". + else if (is_nullable_sequence_of_single_type(attribute.type, "Element"sv)) { + // 1. If the given value is null: + // 1. Set this's explicitly set attr-elements to null. + // 2. Run this's delete the content attribute. + // 3. Return. + attribute_generator.append(R"~~~( + static auto content_attribute = "@attribute.reflect_name@"_fly_string; + + if (!cpp_value.has_value()) { + TRY(throw_dom_exception_if_needed(vm, [&] { return impl->set_@attribute.cpp_name@({}); })); + impl->remove_attribute(content_attribute); + return JS::js_undefined(); + } +)~~~"); + + // 2. Run this's set the content attribute with the empty string. + attribute_generator.append(R"~~~( + MUST(impl->set_attribute(content_attribute, String {})); +)~~~"); + + // 3. Let elements be an empty list. + // 4. For each element in the given value: + // 1. Append a weak reference to element to elements. + // 5. Set this's explicitly set attr-elements to elements. + attribute_generator.append(R"~~~( + Vector> elements; + elements.ensure_capacity(cpp_value->size()); + + for (auto const& element : *cpp_value) { + elements.unchecked_append(*element); + } + + TRY(throw_dom_exception_if_needed(vm, [&] { return impl->set_@attribute.cpp_name@(move(elements)); })); )~~~"); } else if (attribute.type->is_nullable()) { attribute_generator.append(R"~~~( diff --git a/Tests/LibWeb/Text/expected/wpt-import/html/dom/aria-element-reflection.txt b/Tests/LibWeb/Text/expected/wpt-import/html/dom/aria-element-reflection.txt index 17a448872e6..15b29c9dfaa 100644 --- a/Tests/LibWeb/Text/expected/wpt-import/html/dom/aria-element-reflection.txt +++ b/Tests/LibWeb/Text/expected/wpt-import/html/dom/aria-element-reflection.txt @@ -2,32 +2,32 @@ Harness status: OK Found 27 tests -16 Pass -11 Fail +22 Pass +5 Fail Pass aria-activedescendant element reflection Pass aria-activedescendant If the content attribute is set directly, the IDL attribute getter always returns the first element whose ID matches the content attribute. Pass aria-activedescendant Setting the IDL attribute to an element which is not the first element in DOM order with its ID causes the content attribute to be an empty string Pass aria-activedescendant Setting an element reference that crosses into a shadow tree is disallowed, but setting one that is in a shadow inclusive ancestor is allowed. -Fail aria-errormessage +Pass aria-errormessage Pass ariaErrorMessageElement is not defined -Fail aria-details +Pass aria-details Pass aria-activedescendant Deleting a reflected element should return null for the IDL attribute and the content attribute will be empty. Pass aria-activedescendant Changing the ID of an element doesn't lose the reference. Pass aria-activedescendant Reparenting an element into a descendant shadow scope hides the element reference. Pass aria-activedescendant Reparenting referenced element cannot cause retargeting of reference. Pass aria-activedescendant Element reference set in invalid scope remains intact throughout move to valid scope. Fail aria-labelledby. -Fail aria-controls. -Fail aria-describedby. -Fail aria-flowto. -Fail aria-owns. +Pass aria-controls. +Pass aria-describedby. +Pass aria-flowto. +Pass aria-owns. Fail shadow DOM behaviour for FrozenArray element reflection. Fail Moving explicitly set elements across shadow DOM boundaries. -Fail Moving explicitly set elements around within the same scope, and removing from the DOM. +Pass Moving explicitly set elements around within the same scope, and removing from the DOM. Pass aria-activedescendant Reparenting. Pass aria-activedescendant Attaching element reference before it's inserted into the DOM. Pass aria-activedescendant Cross-document references and moves. Pass aria-activedescendant Adopting element keeps references. -Pass Caching invariant different attributes. -Pass Caching invariant different elements. -Fail Passing values of the wrong type should throw a TypeError \ No newline at end of file +Fail Caching invariant different attributes. +Fail Caching invariant different elements. +Pass Passing values of the wrong type should throw a TypeError \ No newline at end of file diff --git a/Tests/LibWeb/Text/expected/wpt-import/shadow-dom/reference-target/tentative/property-reflection-imperative-setup.txt b/Tests/LibWeb/Text/expected/wpt-import/shadow-dom/reference-target/tentative/property-reflection-imperative-setup.txt index 925225102e0..2401eae1b25 100644 --- a/Tests/LibWeb/Text/expected/wpt-import/shadow-dom/reference-target/tentative/property-reflection-imperative-setup.txt +++ b/Tests/LibWeb/Text/expected/wpt-import/shadow-dom/reference-target/tentative/property-reflection-imperative-setup.txt @@ -1,486 +1,2061 @@ Harness status: OK -Found 480 tests +Found 2055 tests -465 Pass +2040 Pass 15 Fail +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to button with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to input with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to meter with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to output with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to progress with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to select with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to textarea with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to div with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to object with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to label with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to legend with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to option with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup Pass button.form has reflection behavior IsNull when pointing to datalist with reference target with imperative setup +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass button.commandForElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup Fail button.form has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to button with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to button with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to input with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to input with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to meter with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to meter with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to output with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to output with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to progress with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to progress with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to select with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to select with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to textarea with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to textarea with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to div with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to div with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to object with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to object with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to label with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to label with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to legend with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to legend with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to option with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to option with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup Pass input.form has reflection behavior IsNull when pointing to datalist with reference target with imperative setup Fail input.list has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup Fail input.form has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup Pass input.list has reflection behavior IsNull when pointing to form with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to button with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to button with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to input with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to input with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to meter with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to meter with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to output with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to output with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to progress with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to progress with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to select with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to select with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to textarea with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to textarea with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to div with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to div with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to object with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to object with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to label with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to label with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to fieldset with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to legend with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to legend with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to option with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to option with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to datalist with reference target with imperative setup Pass output.form has reflection behavior IsNull when pointing to datalist with reference target with imperative setup +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to form with reference target with imperative setup Fail output.form has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to button with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to input with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to meter with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to output with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to progress with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to select with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to textarea with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to div with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to object with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to label with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to legend with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to option with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass select.form has reflection behavior IsNull when pointing to datalist with reference target with imperative setup +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Fail select.form has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to button with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to input with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to meter with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to output with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to progress with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to select with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to textarea with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to div with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to object with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to label with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to legend with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to option with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass textarea.form has reflection behavior IsNull when pointing to datalist with reference target with imperative setup +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Fail textarea.form has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to button with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to input with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to meter with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to output with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to progress with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to select with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to textarea with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to div with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to object with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to label with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to legend with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to option with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass object.form has reflection behavior IsNull when pointing to datalist with reference target with imperative setup +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Fail object.form has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to button with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to button with reference target with imperative setup Fail label.control has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to input with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to input with reference target with imperative setup Fail label.control has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to meter with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to meter with reference target with imperative setup Fail label.control has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to output with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to output with reference target with imperative setup Fail label.control has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to progress with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to progress with reference target with imperative setup Fail label.control has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to select with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to select with reference target with imperative setup Fail label.control has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to textarea with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to textarea with reference target with imperative setup Fail label.control has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to div with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to div with reference target with imperative setup Pass label.control has reflection behavior IsNull when pointing to div with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to object with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to object with reference target with imperative setup Pass label.control has reflection behavior IsNull when pointing to object with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to label with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to label with reference target with imperative setup Pass label.control has reflection behavior IsNull when pointing to label with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to fieldset with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup Pass label.control has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to legend with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to legend with reference target with imperative setup Pass label.control has reflection behavior IsNull when pointing to legend with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to option with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to option with reference target with imperative setup Pass label.control has reflection behavior IsNull when pointing to option with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to datalist with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to datalist with reference target with imperative setup Pass label.control has reflection behavior IsNull when pointing to datalist with reference target with imperative setup +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to form with reference target with imperative setup Pass label.form has reflection behavior IsNull when pointing to form with reference target with imperative setup Pass label.control has reflection behavior IsNull when pointing to form with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to button with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to input with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to meter with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to output with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to progress with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to select with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to textarea with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to div with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to object with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to label with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to legend with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to option with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass fieldset.form has reflection behavior IsNull when pointing to datalist with reference target with imperative setup +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Fail fieldset.form has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to button with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to input with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to meter with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to output with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to progress with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to select with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to textarea with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to div with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to object with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to label with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to legend with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to option with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to datalist with reference target with imperative setup +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass legend.form has reflection behavior IsNull when pointing to form with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to button with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to input with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to meter with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to output with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to progress with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to select with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to textarea with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to div with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to object with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to label with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to fieldset with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to legend with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to option with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to datalist with reference target with imperative setup +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass option.form has reflection behavior IsNull when pointing to form with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target with imperative setup -Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup \ No newline at end of file +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target with imperative setup +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target with imperative setup +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target with imperative setup \ No newline at end of file diff --git a/Tests/LibWeb/Text/expected/wpt-import/shadow-dom/reference-target/tentative/property-reflection.txt b/Tests/LibWeb/Text/expected/wpt-import/shadow-dom/reference-target/tentative/property-reflection.txt index 509188afa41..61f04712526 100644 --- a/Tests/LibWeb/Text/expected/wpt-import/shadow-dom/reference-target/tentative/property-reflection.txt +++ b/Tests/LibWeb/Text/expected/wpt-import/shadow-dom/reference-target/tentative/property-reflection.txt @@ -1,487 +1,2062 @@ Harness status: OK -Found 481 tests +Found 2056 tests -465 Pass +2040 Pass 16 Fail +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to button with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to button with reference target Pass button.form has reflection behavior IsNull when pointing to button with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to input with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to input with reference target Pass button.form has reflection behavior IsNull when pointing to input with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to meter with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to meter with reference target Pass button.form has reflection behavior IsNull when pointing to meter with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to output with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to output with reference target Pass button.form has reflection behavior IsNull when pointing to output with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to progress with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to progress with reference target Pass button.form has reflection behavior IsNull when pointing to progress with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to select with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to select with reference target Pass button.form has reflection behavior IsNull when pointing to select with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to textarea with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to textarea with reference target Pass button.form has reflection behavior IsNull when pointing to textarea with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to div with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to div with reference target Pass button.form has reflection behavior IsNull when pointing to div with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to object with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to object with reference target Pass button.form has reflection behavior IsNull when pointing to object with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to label with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to label with reference target Pass button.form has reflection behavior IsNull when pointing to label with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to fieldset with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to fieldset with reference target Pass button.form has reflection behavior IsNull when pointing to fieldset with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to legend with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to legend with reference target Pass button.form has reflection behavior IsNull when pointing to legend with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to option with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to option with reference target Pass button.form has reflection behavior IsNull when pointing to option with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to datalist with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to datalist with reference target Pass button.form has reflection behavior IsNull when pointing to datalist with reference target +Pass button.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass button.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass button.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass button.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass button.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass button.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass button.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass button.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass button.commandForElement has reflection behavior ReflectsHost when pointing to form with reference target Pass button.popoverTargetElement has reflection behavior ReflectsHost when pointing to form with reference target Fail button.form has reflection behavior ReflectsHost when pointing to form with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to button with reference target Pass input.form has reflection behavior IsNull when pointing to button with reference target Pass input.list has reflection behavior IsNull when pointing to button with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to input with reference target Pass input.form has reflection behavior IsNull when pointing to input with reference target Pass input.list has reflection behavior IsNull when pointing to input with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to meter with reference target Pass input.form has reflection behavior IsNull when pointing to meter with reference target Pass input.list has reflection behavior IsNull when pointing to meter with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to output with reference target Pass input.form has reflection behavior IsNull when pointing to output with reference target Pass input.list has reflection behavior IsNull when pointing to output with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to progress with reference target Pass input.form has reflection behavior IsNull when pointing to progress with reference target Pass input.list has reflection behavior IsNull when pointing to progress with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to select with reference target Pass input.form has reflection behavior IsNull when pointing to select with reference target Pass input.list has reflection behavior IsNull when pointing to select with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to textarea with reference target Pass input.form has reflection behavior IsNull when pointing to textarea with reference target Pass input.list has reflection behavior IsNull when pointing to textarea with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to div with reference target Pass input.form has reflection behavior IsNull when pointing to div with reference target Pass input.list has reflection behavior IsNull when pointing to div with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to object with reference target Pass input.form has reflection behavior IsNull when pointing to object with reference target Pass input.list has reflection behavior IsNull when pointing to object with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to label with reference target Pass input.form has reflection behavior IsNull when pointing to label with reference target Pass input.list has reflection behavior IsNull when pointing to label with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to fieldset with reference target Pass input.form has reflection behavior IsNull when pointing to fieldset with reference target Pass input.list has reflection behavior IsNull when pointing to fieldset with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to legend with reference target Pass input.form has reflection behavior IsNull when pointing to legend with reference target Pass input.list has reflection behavior IsNull when pointing to legend with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to option with reference target Pass input.form has reflection behavior IsNull when pointing to option with reference target Pass input.list has reflection behavior IsNull when pointing to option with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to datalist with reference target Pass input.form has reflection behavior IsNull when pointing to datalist with reference target Fail input.list has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass input.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass input.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass input.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass input.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass input.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass input.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass input.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass input.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass input.popoverTargetElement has reflection behavior ReflectsHost when pointing to form with reference target Fail input.form has reflection behavior ReflectsHost when pointing to form with reference target Pass input.list has reflection behavior IsNull when pointing to form with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass meter.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass meter.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass meter.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass meter.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass meter.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass meter.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass meter.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass meter.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to button with reference target Pass output.form has reflection behavior IsNull when pointing to button with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to input with reference target Pass output.form has reflection behavior IsNull when pointing to input with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to meter with reference target Pass output.form has reflection behavior IsNull when pointing to meter with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to output with reference target Pass output.form has reflection behavior IsNull when pointing to output with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to progress with reference target Pass output.form has reflection behavior IsNull when pointing to progress with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to select with reference target Pass output.form has reflection behavior IsNull when pointing to select with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to textarea with reference target Pass output.form has reflection behavior IsNull when pointing to textarea with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to div with reference target Pass output.form has reflection behavior IsNull when pointing to div with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to object with reference target Pass output.form has reflection behavior IsNull when pointing to object with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to label with reference target Pass output.form has reflection behavior IsNull when pointing to label with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to fieldset with reference target Pass output.form has reflection behavior IsNull when pointing to fieldset with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to legend with reference target Pass output.form has reflection behavior IsNull when pointing to legend with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to option with reference target Pass output.form has reflection behavior IsNull when pointing to option with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to datalist with reference target Pass output.form has reflection behavior IsNull when pointing to datalist with reference target +Pass output.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass output.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass output.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass output.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass output.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass output.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass output.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass output.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass output.htmlFor has reflection behavior ReflectsHostIDInDOMTokenList when pointing to form with reference target Fail output.form has reflection behavior ReflectsHost when pointing to form with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass progress.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass progress.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass progress.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass progress.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass progress.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass progress.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass progress.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass progress.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass select.form has reflection behavior IsNull when pointing to button with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass select.form has reflection behavior IsNull when pointing to input with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass select.form has reflection behavior IsNull when pointing to meter with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass select.form has reflection behavior IsNull when pointing to output with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass select.form has reflection behavior IsNull when pointing to progress with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass select.form has reflection behavior IsNull when pointing to select with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass select.form has reflection behavior IsNull when pointing to textarea with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass select.form has reflection behavior IsNull when pointing to div with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass select.form has reflection behavior IsNull when pointing to object with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass select.form has reflection behavior IsNull when pointing to label with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass select.form has reflection behavior IsNull when pointing to fieldset with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass select.form has reflection behavior IsNull when pointing to legend with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass select.form has reflection behavior IsNull when pointing to option with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass select.form has reflection behavior IsNull when pointing to datalist with reference target +Pass select.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass select.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass select.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass select.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass select.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass select.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass select.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass select.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Fail select.form has reflection behavior ReflectsHost when pointing to form with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass textarea.form has reflection behavior IsNull when pointing to button with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass textarea.form has reflection behavior IsNull when pointing to input with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass textarea.form has reflection behavior IsNull when pointing to meter with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass textarea.form has reflection behavior IsNull when pointing to output with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass textarea.form has reflection behavior IsNull when pointing to progress with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass textarea.form has reflection behavior IsNull when pointing to select with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass textarea.form has reflection behavior IsNull when pointing to textarea with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass textarea.form has reflection behavior IsNull when pointing to div with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass textarea.form has reflection behavior IsNull when pointing to object with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass textarea.form has reflection behavior IsNull when pointing to label with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass textarea.form has reflection behavior IsNull when pointing to fieldset with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass textarea.form has reflection behavior IsNull when pointing to legend with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass textarea.form has reflection behavior IsNull when pointing to option with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass textarea.form has reflection behavior IsNull when pointing to datalist with reference target +Pass textarea.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass textarea.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass textarea.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass textarea.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass textarea.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass textarea.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass textarea.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass textarea.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Fail textarea.form has reflection behavior ReflectsHost when pointing to form with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass div.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass div.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass div.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass div.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass div.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass div.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass div.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass div.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass object.form has reflection behavior IsNull when pointing to button with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass object.form has reflection behavior IsNull when pointing to input with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass object.form has reflection behavior IsNull when pointing to meter with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass object.form has reflection behavior IsNull when pointing to output with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass object.form has reflection behavior IsNull when pointing to progress with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass object.form has reflection behavior IsNull when pointing to select with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass object.form has reflection behavior IsNull when pointing to textarea with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass object.form has reflection behavior IsNull when pointing to div with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass object.form has reflection behavior IsNull when pointing to object with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass object.form has reflection behavior IsNull when pointing to label with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass object.form has reflection behavior IsNull when pointing to fieldset with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass object.form has reflection behavior IsNull when pointing to legend with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass object.form has reflection behavior IsNull when pointing to option with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass object.form has reflection behavior IsNull when pointing to datalist with reference target +Pass object.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass object.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass object.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass object.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass object.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass object.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass object.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass object.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Fail object.form has reflection behavior ReflectsHost when pointing to form with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to button with reference target Pass label.form has reflection behavior IsNull when pointing to button with reference target Fail label.control has reflection behavior ReflectsHost when pointing to button with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to input with reference target Pass label.form has reflection behavior IsNull when pointing to input with reference target Fail label.control has reflection behavior ReflectsHost when pointing to input with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to meter with reference target Pass label.form has reflection behavior IsNull when pointing to meter with reference target Fail label.control has reflection behavior ReflectsHost when pointing to meter with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to output with reference target Pass label.form has reflection behavior IsNull when pointing to output with reference target Fail label.control has reflection behavior ReflectsHost when pointing to output with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to progress with reference target Pass label.form has reflection behavior IsNull when pointing to progress with reference target Fail label.control has reflection behavior ReflectsHost when pointing to progress with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to select with reference target Pass label.form has reflection behavior IsNull when pointing to select with reference target Fail label.control has reflection behavior ReflectsHost when pointing to select with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to textarea with reference target Pass label.form has reflection behavior IsNull when pointing to textarea with reference target Fail label.control has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to div with reference target Pass label.form has reflection behavior IsNull when pointing to div with reference target Pass label.control has reflection behavior IsNull when pointing to div with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to object with reference target Pass label.form has reflection behavior IsNull when pointing to object with reference target Pass label.control has reflection behavior IsNull when pointing to object with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to label with reference target Pass label.form has reflection behavior IsNull when pointing to label with reference target Pass label.control has reflection behavior IsNull when pointing to label with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to fieldset with reference target Pass label.form has reflection behavior IsNull when pointing to fieldset with reference target Pass label.control has reflection behavior IsNull when pointing to fieldset with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to legend with reference target Pass label.form has reflection behavior IsNull when pointing to legend with reference target Pass label.control has reflection behavior IsNull when pointing to legend with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to option with reference target Pass label.form has reflection behavior IsNull when pointing to option with reference target Pass label.control has reflection behavior IsNull when pointing to option with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to datalist with reference target Pass label.form has reflection behavior IsNull when pointing to datalist with reference target Pass label.control has reflection behavior IsNull when pointing to datalist with reference target +Pass label.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass label.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass label.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass label.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass label.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass label.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass label.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass label.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass label.htmlFor has reflection behavior ReflectsHostID when pointing to form with reference target Pass label.form has reflection behavior IsNull when pointing to form with reference target Pass label.control has reflection behavior IsNull when pointing to form with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass fieldset.form has reflection behavior IsNull when pointing to button with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass fieldset.form has reflection behavior IsNull when pointing to input with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass fieldset.form has reflection behavior IsNull when pointing to meter with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass fieldset.form has reflection behavior IsNull when pointing to output with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass fieldset.form has reflection behavior IsNull when pointing to progress with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass fieldset.form has reflection behavior IsNull when pointing to select with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass fieldset.form has reflection behavior IsNull when pointing to textarea with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass fieldset.form has reflection behavior IsNull when pointing to div with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass fieldset.form has reflection behavior IsNull when pointing to object with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass fieldset.form has reflection behavior IsNull when pointing to label with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass fieldset.form has reflection behavior IsNull when pointing to fieldset with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass fieldset.form has reflection behavior IsNull when pointing to legend with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass fieldset.form has reflection behavior IsNull when pointing to option with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass fieldset.form has reflection behavior IsNull when pointing to datalist with reference target +Pass fieldset.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass fieldset.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass fieldset.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass fieldset.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass fieldset.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass fieldset.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass fieldset.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass fieldset.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Fail fieldset.form has reflection behavior ReflectsHost when pointing to form with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass legend.form has reflection behavior IsNull when pointing to button with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass legend.form has reflection behavior IsNull when pointing to input with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass legend.form has reflection behavior IsNull when pointing to meter with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass legend.form has reflection behavior IsNull when pointing to output with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass legend.form has reflection behavior IsNull when pointing to progress with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass legend.form has reflection behavior IsNull when pointing to select with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass legend.form has reflection behavior IsNull when pointing to textarea with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass legend.form has reflection behavior IsNull when pointing to div with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass legend.form has reflection behavior IsNull when pointing to object with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass legend.form has reflection behavior IsNull when pointing to label with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass legend.form has reflection behavior IsNull when pointing to fieldset with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass legend.form has reflection behavior IsNull when pointing to legend with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass legend.form has reflection behavior IsNull when pointing to option with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass legend.form has reflection behavior IsNull when pointing to datalist with reference target +Pass legend.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass legend.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass legend.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass legend.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass legend.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass legend.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass legend.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass legend.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass legend.form has reflection behavior IsNull when pointing to form with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass option.form has reflection behavior IsNull when pointing to button with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass option.form has reflection behavior IsNull when pointing to input with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass option.form has reflection behavior IsNull when pointing to meter with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass option.form has reflection behavior IsNull when pointing to output with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass option.form has reflection behavior IsNull when pointing to progress with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass option.form has reflection behavior IsNull when pointing to select with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass option.form has reflection behavior IsNull when pointing to textarea with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass option.form has reflection behavior IsNull when pointing to div with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass option.form has reflection behavior IsNull when pointing to object with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass option.form has reflection behavior IsNull when pointing to label with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass option.form has reflection behavior IsNull when pointing to fieldset with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass option.form has reflection behavior IsNull when pointing to legend with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass option.form has reflection behavior IsNull when pointing to option with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass option.form has reflection behavior IsNull when pointing to datalist with reference target +Pass option.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass option.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass option.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass option.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass option.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass option.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass option.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass option.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass option.form has reflection behavior IsNull when pointing to form with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass datalist.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass datalist.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass datalist.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass datalist.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass datalist.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass datalist.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass datalist.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass datalist.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to button with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to button with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to input with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to input with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to meter with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to meter with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to output with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to output with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to progress with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to progress with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to select with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to select with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to textarea with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to textarea with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to div with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to div with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to object with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to object with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to label with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to label with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to fieldset with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to fieldset with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to legend with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to legend with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to option with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to option with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to datalist with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to datalist with reference target +Pass form.ariaControlsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Pass form.ariaActiveDescendantElement has reflection behavior ReflectsHost when pointing to form with reference target +Pass form.ariaDescribedByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass form.ariaDetailsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass form.ariaErrorMessageElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass form.ariaFlowToElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass form.ariaLabelledByElements has reflection behavior ReflectsHostInArray when pointing to form with reference target +Pass form.ariaOwnsElements has reflection behavior ReflectsHostInArray when pointing to form with reference target Fail The .labels property of the referenced input element should point to the referencing label element \ No newline at end of file