$media(EnumSet.of(Media.screen, Media.print)).
$type("text/css").$href("style.css")._().
link().$rel(EnumSet.of(LinkType.index, LinkType.start)).
$href("index.html")._();
h.div("#content")._("content")._();
PrintWriter out = h.getWriter();
out.flush();
assertEquals(0, h.nestLevel);
verify(out).print(" media=\"screen, print\"");