| <?xml version="1.0" encoding="utf-8"?> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> |
| <meta http-equiv="content-type" content="text/html; charset=utf-8" /> |
| <title>Test content with attr</title> |
| content: '(href=' attr(href) ')'; |
| <script type="text/javascript"> |
| document.getElementById("toChange").href = "4"; |
| <body onload="changeHref();"> |
| <p>Each link below should display the text "n(href=n)" where n is a number</p> |
| <p>The href attribute of the last one is changed onload.</p> |
| <p><a id="toChange" href="3">4</a></p> |