Parent Directory
|
Revision Log
Typo fixed; running a script algorithm synced with the latest spec (c.f. HTML5 revision 2139)
| 1 | <!DOCTYPE HTML> |
| 2 | <html lang=en> |
| 3 | <head> |
| 4 | <title>Live Scripting HTML Parser</title> |
| 5 | <link rel=author href="http://suika.fam.cx/~wakaba/who?"> |
| 6 | <link rel=license href="http://suika.fam.cx/c/gnu/gpl" |
| 7 | title="GNU GPL2 or later"> |
| 8 | <style> |
| 9 | h1 { |
| 10 | margin: 0; |
| 11 | font-size: 150%; |
| 12 | } |
| 13 | h2 { |
| 14 | margin: 0; |
| 15 | font-size: 100%; |
| 16 | } |
| 17 | p { |
| 18 | margin: 0 1em; |
| 19 | } |
| 20 | textarea { |
| 21 | width: 100%; |
| 22 | -width: 99%; |
| 23 | height: 10em; |
| 24 | } |
| 25 | output { |
| 26 | display: block; |
| 27 | font-family: monospace; |
| 28 | white-space: -moz-pre-wrap; |
| 29 | white-space: pre-wrap; |
| 30 | } |
| 31 | </style> |
| 32 | <script> |
| 33 | var delayedUpdater = 0; |
| 34 | |
| 35 | function update () { |
| 36 | if (delayedUpdater) { |
| 37 | clearTimeout (delayedUpdater); |
| 38 | delayedUpd |