https://alphagov.github.io/accessibility-tool-audit/tests/html-object-not-embedded-accessibly-wmode-parameter-not-set-to-window.html
This test is ambiguous because wmode=transparent is only an issue if data="foo" refers to an SWF movie, because wmode is a proprietary Adobe parameter for Flash player.
Here's Adobe's wmode documentation:
https://helpx.adobe.com/flash/kb/flash-object-embed-tag-attributes.html#main_Browser_support_for_Window_Mode__wmode__values
So this is definitely an issue:
<object type="application/x-shockwave-flash" data="movie_name.swf" width="550" height="400">
<param name="wmode" value="transparent" />
Alternative text
</object>
this is definitely not an issue:
<!-- not Flash content: wmode has no effect -->
<object data="clock.html" type="text/html">
<param name="wmode" value="transparent" />
Alternative text
</object>
and this depends on whether data="foo" is an SWF file:
<!-- wmode has no effect unless "foo" is an SWF file -->
<object data="foo">
<param name="wmode" value="transparent" />
Alternative text
</object>
https://alphagov.github.io/accessibility-tool-audit/tests/html-object-not-embedded-accessibly-wmode-parameter-not-set-to-window.html
This test is ambiguous because wmode=transparent is only an issue if data="foo" refers to an SWF movie, because wmode is a proprietary Adobe parameter for Flash player.
Here's Adobe's wmode documentation:
https://helpx.adobe.com/flash/kb/flash-object-embed-tag-attributes.html#main_Browser_support_for_Window_Mode__wmode__values
So this is definitely an issue:
this is definitely not an issue:
and this depends on whether data="foo" is an SWF file: