| <?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 noscript element in XHTMLMP document </title> |
| </head> |
| |
| <body onload="javascript:func()"> |
| <p> Test for noscript element in XHTMLMP </p> |
| <p> If the test passes, you can see the noscript text above</p> |
| |
| <noscript> |
| <h1><h1>The first noscript element<h1></h1> |
| </noscript> |
| |
| <script type="text/wrongtype"> |
| function func() { |
| alert("You will see me if the scripting language identified by the type of script element is supported"); |
| } |
| </script> |
| |
| <noscript> |
| <h2><h2>The second noscript element<h2></h2> |
| </noscript> |
| |
| </body> |
| </html> |
| |