/[suikacvs]/www/test/dom/node/prefix/element-absuri-xmlnsprefix-null.xhtml
Suika

Contents of /www/test/dom/node/prefix/element-absuri-xmlnsprefix-null.xhtml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download)
Sat Jun 16 12:36:13 2007 UTC (17 years, 10 months ago) by wakaba
Branch: MAIN
CVS Tags: HEAD
See <http://suika.fam.cx/gate/2005/sw/prefix>

1 wakaba 1.1 <html xmlns="http://www.w3.org/1999/xhtml"><head>
2     <title>Element.prefix = null</title>
3     </head><body>
4     <p id="result" class="FAIL">FAIL (not executed)</p>
5     <script type="text/javascript">// <![CDATA[
6     var result = document.getElementById ('result');
7     result.firstChild.data = 'FAIL (script error)';
8    
9     var el;
10     try {
11     el = document.createAttributeNS ("http://test/", "xmlns:declaredPrefix");
12     } catch (e) { }
13     if (!el) {
14     try {
15     el = document.createAttributeNS ("http://test/", "declaredPrefix");
16     el.prefix = "xmlns";
17     } catch (e) { }
18     }
19     var ok = (el && el.prefix == "xmlns" &&
20     el.namespaceURI == "http://test/");
21    
22     if (ok) {
23     try {
24     el.prefix = null;
25     result.className = '';
26     result.firstChild.data = el.prefix + ', type ' + typeof (el.prefix);
27     } catch (e) {
28     result.className = '';
29     result.firstChild.data = e.toString ();
30     }
31     } else {
32     result.className = 'NA';
33     result.firstChild.data = 'N/A';
34     }
35     // ]]></script>
36     </body></html>
37    

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24