| <?xml-stylesheet href="css3-modsel-d3.css" type="text/css"?> |
| <test> |
| |
| <div xmlns="http://www.w3.org/1999/xhtml"> |
| |
| <script type="text/javascript"> |
| <![CDATA[ |
| |
| function test() { |
| document.getElementsByTagNameNS('', 't')[1].setAttributeNS('', 'attribute', 'start middle end'); |
| } |
| |
| window.setTimeout("test()", 100); |
| ]]> |
| </script> |
| |
| <p> The following block should be green. </p> |
| |
| <!-- root of selector --> |
| <stub xmlns=""></stub> |
| |
| <!-- middle part of selector does not match this --> |
| <t xmlns="" attribute="fake"></t> |
| |
| <!-- middle part of selector matches this once attribute is fixed --> |
| <t xmlns="" attribute="start mid dle end"></t> |
| |
| <!-- subject of selector --> |
| <t xmlns="" test="test"></t> |
| |
| </div> |
| |
| </test> |