In Media Chrome v1.0+, all attributes have been changed from kebab-case to lowercase (smushedcase). To migrate, remove the hyphens from your HTML attributes and CSS selectors.
HTML Attributes
Replace attributes like seek-offset with seekoffset and show-duration with showduration.
CSS Selectors
When using media state attributes for conditional styling, remove hyphens from the attribute names. For example, [media-airplay-unavailable] becomes [mediaairplayunavailable].
Breakpoint Attributes
Breakpoint attributes for responsive design are also lowercase. For example, [breakpoint-md] becomes [breakpointmd].
<!-- Before v1.0 -->
<media-seek-backward-button seek-offset="30"></media-seek-backward-button>
<media-time-display show-duration remaining></media-time-display>
<!-- After v1.0 -->
<media-seek-backward-button seekoffset="30"></media-seek-backward-button>
<media-time-display showduration remaining></media-time-display>