Parent Directory
|
Revision Log
Bug fix
| 1 | wakaba | 1.1 | <!DOCTYPE HTML> |
| 2 | <html lang=en> | ||
| 3 | <head> | ||
| 4 | <title>Demo of HTML5 Parsing Algorithm with Scripting Enabled</title> | ||
| 5 | <style> | ||
| 6 | textarea { | ||
| 7 | display: block; | ||
| 8 | width: 80%; | ||
| 9 | margin-left: auto; | ||
| 10 | margin-right: auto; | ||
| 11 | min-height: 20em; | ||
| 12 | } | ||
| 13 | output { | ||
| 14 | display: block; | ||
| 15 | font-family: monospace; | ||
| 16 | wakaba | 1.4 | white-space: -moz-pre-wrap; |
| 17 | white-space: pre-wrap; | ||
| 18 | wakaba | 1.1 | } |
| 19 | </style> | ||
| 20 | <script> | ||
| 21 | function update () { | ||
| 22 | document.logElement.textContent = ''; | ||
| 23 | wakaba |