| OLD | NEW |
| 1 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:x="test"> | 1 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:x="test"> |
| 2 <head> | 2 <head> |
| 3 <title>Node.lookupPrefix</title> | 3 <title>Node.lookupPrefix</title> |
| 4 <script src="../../../../resources/testharness.js"></script> | 4 <script src="../../../../resources/testharness.js"></script> |
| 5 <script src="../../../../resources/testharnessreport.js"></script> | 5 <script src="../../../../resources/testharnessreport.js"></script> |
| 6 </head> | 6 </head> |
| 7 <body xmlns:s="test"> | 7 <body xmlns:s="test"> |
| 8 <div id="log"/> | 8 <div id="log"/> |
| 9 <x xmlns:t="test"><!-- comment --><?test test?>TEST<x/></x> | 9 <x xmlns:t="test"><!-- comment --><?test test?>TEST<x/></x> |
| 10 <script> | 10 <script> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 lookupPrefix(x, "test", "t") | 22 lookupPrefix(x, "test", "t") |
| 23 lookupPrefix(x.parentNode, "test", "s") | 23 lookupPrefix(x.parentNode, "test", "s") |
| 24 lookupPrefix(x.firstChild, "test", "t") | 24 lookupPrefix(x.firstChild, "test", "t") |
| 25 lookupPrefix(x.childNodes[1], "test", "t") | 25 lookupPrefix(x.childNodes[1], "test", "t") |
| 26 lookupPrefix(x.childNodes[2], "test", "t") | 26 lookupPrefix(x.childNodes[2], "test", "t") |
| 27 lookupPrefix(x.lastChild, "test", "t") | 27 lookupPrefix(x.lastChild, "test", "t") |
| 28 x.parentNode.removeChild(x) | 28 x.parentNode.removeChild(x) |
| 29 </script> | 29 </script> |
| 30 </body> | 30 </body> |
| 31 </html> | 31 </html> |
| OLD | NEW |