| 1 |
<?xml version="1.0"?>
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
| 3 |
|
| 4 |
<head>
|
| 5 |
<title>A test for serialize.js</title>
|
| 6 |
<link rel="stylesheet" href="http://suika.fam.cx/www/style/html/xhtml"
|
| 7 |
media="all"/>
|
| 8 |
<script type="text/javascript" src="serialize.js"></script>
|
| 9 |
<link rel="copyright" href="http://suika.fam.cx/c/pd" title="Public Domain" />
|
| 10 |
</head>
|
| 11 |
|
| 12 |
<body>
|
| 13 |
|
| 14 |
<p> Test</p>
|
| 15 |
|
| 16 |
<div id="result"></div>
|
| 17 |
|
| 18 |
<script type="text/javascript">
|
| 19 |
window.onload=function(){
|
| 20 |
var xs = new SimpleXMLSerializer ();
|
| 21 |
document.getElementById ('result').appendChild
|
| 22 |
(document.createTextNode (xs.writeToString (document)));
|
| 23 |
}</script>
|
| 24 |
|
| 25 |
</body>
|
| 26 |
|
| 27 |
</html>
|
| 28 |
<!-- Comment -->
|