Parent Directory
|
Revision Log
In both of Opera9 and Firefox2, <script/> is executed as soon as it is inserted into the DOM
1 | wakaba | 1.1 | <html xmlns="http://www.w3.org/1999/xhtml"> |
2 | <head> | ||
3 | <title><script/> in XHTML</title> | ||
4 | </head> | ||
5 | <body> | ||
6 | <p>Before <script/></p> | ||
7 | <script> | ||
8 | document.body.appendChild (document.createElementNS ('http://www.w3.org/1999/xhtml', 'p')).textContent = 'inserted by <script/>'; | ||
9 | </script> | ||
10 | <p>After <script/></p> | ||
11 | </body> | ||
12 | </html> |
admin@suikawiki.org | ViewVC Help |
Powered by ViewVC 1.1.24 |