@Test
public void duplicate_stylesheet_ignored_first_media_wins()
{
DocumentLinker linker = mockDocumentLinker();
StylesheetOptions options = new StylesheetOptions("print");
linker.addStylesheetLink(new StylesheetLink("style.css", options));
replay();
JavaScriptSupportImpl jss = new JavaScriptSupportImpl(linker, null, null);
jss.importStylesheet(new StylesheetLink("style.css", options));
jss.importStylesheet(new StylesheetLink("style.css", new StylesheetOptions("hologram")));
jss.commit();
verify();
}