2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / dom / createElement-with-column.xml
blob6f276cd79c162cd20138e263153417939d808c47
1 <html xmlns='http://www.w3.org/1999/xhtml'>
2  <head>
3   <title>createElement('a:b') in XML</title>
4  </head>
5  <body>
6   <p>FAIL (script didn't run)</p>
7   <script>
8    if (window.layoutTestController)
9     layoutTestController.dumpAsText();
11    var got = document.createElement('a:b').localName;
12    var expected = 'a:b';
13    var passed = got == expected;
14    document.getElementsByTagName('p')[0].firstChild.data = passed ? 'PASS' : 'FAIL (got: ' + got + ', expected: ' + expected + ')';
15   </script>
16  </body>
17 </html>