| <?xml version="1.0"?> |
| <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.1//EN" "http://www.wapforum.org/DTD/xhtml-mobile11.dtd"> |
| |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head> |
| <title> Test nested-noscript element in XHTMLMP </title> |
| <script type="text/wrongtype"> |
| function testFunc() { |
| alert("You will see me if the scripting language identified by the type of script element is supported"); |
| } |
| </script> |
| </head> |
| |
| <body onload="testFunc()"> |
| <p> Test for nested-noscript element in XHTMLMP </p> |
| <p> If the test passes, you will see the following three nested noscript text, otherwise, you will see the alert window.</p> |
| <noscript> |
| <h1>first noscript element</h1> |
| <noscript> |
| <h2>second noscript element</h2> |
| <noscript> |
| <h3>third noscript element</h3> |
| </noscript> |
| <noscript> |
| <h5>fourth noscript element</h5> |
| </noscript> |
| </noscript> |
| </noscript> |
| </body> |
| </html> |