From the W3C spec:
Specify that the style sheet is persistent, preferred, or alternate:
- To make a style sheet persistent, set the rel attribute to "stylesheet" and don't set the title attribute.
- To make a style sheet preferred, set the rel attribute to "stylesheet" and name the style sheet with the title attribute.
- To specify an alternate style sheet, set the rel attribute to "alternate stylesheet" and name the style sheet with the title attribute.
As the browser specific stylesheet is preferred, I modified the component to set the title attribute in the link tag and the browser now recognizes the browser specific stylesheet.
From the W3C spec:
Specify that the style sheet is persistent, preferred, or alternate:
As the browser specific stylesheet is preferred, I modified the component to set the title attribute in the link tag and the browser now recognizes the browser specific stylesheet.