mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
15 lines
378 B
HTML
15 lines
378 B
HTML
<html>
|
|
<body>
|
|
If your browser do not support XSLT click <a href="index2.html">here</a>.
|
|
<script type="text/javascript">
|
|
var xml = new ActiveXObject("Microsoft.XMLDOM")
|
|
xml.async = false
|
|
xml.load("rapistatus.xml")
|
|
var xsl = new ActiveXObject("Microsoft.XMLDOM")
|
|
xsl.async = false
|
|
xsl.load("rapistatus.xsl")
|
|
document.write(xml.transformNode(xsl))
|
|
</script>
|
|
</body>
|
|
</html>
|