You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
<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>
The text was updated successfully, but these errors were encountered:
Dropping it makes sense, since Adobe have announced end of life for Flash in 2020, and browser vendors have been gradually making it harder to activate Flash content since 2017 https://theblog.adobe.com/adobe-flash-update/
Flash is already disabled by default in Safari on macOS High Sierra
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:
The text was updated successfully, but these errors were encountered: