Test 58: One or more iframe elements with a height > 1, without an ARIA-assigned role, not intentionally hidden in the DOM and available to assistive technologies, has a height attribute set to a value that does not end with '%'.
Context: EAP-41759 found Platform showing stale rule-58 text missing the "with a height > 1" clause. That clause was already correct in access-engine-es2015 (fixed Nov 2020, ENG-989); the drift was in Platform's cached copy of the rule text, not the engine. This page verifies the engine's actual selector/description still match what ENG-989 intended, in particular the height="1"/"1px" tiny-iframe exclusion.
src/Tests/GuidedAutomatic/Test_58.js):iframe, visible, available to assistive technologies, with no ARIA-assigned roleheight attribute that is not "1", not "1px", and does not end in "%"height="1" / height="1px" are excluded on purpose (tiny/tracking iframes) — this is the clause that went missing from the description textAbsolute-unit heights on iframes don't reflow with the user's zoom/text-size settings, unlike percentage heights.
height="1" is explicitly excluded regardless of unit - this is the ENG-989 exception the description clause refers to
height="1px" is explicitly excluded
Selector requires a height attribute to be present
Empty height values are excluded
Any ARIA-assigned role removes the element from scope, even with a failing height
Not visible - excluded from testing
aria-hidden elements are not available to assistive technologies
Height ends in "%" - reflows with zoom, PASSES
Percentage height relative to container - PASSES
Absolute height that does not end in "%" - FAILS
Explicit px height - FAILS
Common third-party embed pattern (video/map) shipped with a fixed px height - FAILS
Not >1 in spirit, but the selector only special-cases exactly "1"/"1px" - height="0" still FAILS per current code, worth confirming against the description text
String match is exact - "1.5" does not equal "1", so this FAILS despite being close to the tiny-iframe exception
Excluded twice over: ARIA role assigned AND height="1px" - still N/A
Test reads the height attribute, not the CSS style - attribute value "150" FAILS even though CSS overrides the rendered height