<?xml-stylesheet href="general.css"?>
<?xml-stylesheet href="#css1" type="text/css" title="Default"?>
<?xml-stylesheet href="#css2" type="text/css" title="Alternate" alternate="yes"?>
<!DOCTYPE test [
 <!ATTLIST css id ID #IMPLIED>
]>
<test>
 <css id="css1">
  a { color: navy; }
  b { display: none; }
 </css>
 <css id="css2">
  a { display: none; }
  b { color: green; }
 </css>
 <a>There should be an alternate stylesheet. Switch to it.</a>
 <b>This line should appear and be green when the stylesheet set is switched.</b>
</test>
