blob: e2fb8a688257d2cae00b4940ad631343def3be81 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="../../../resources/js-test.js"></script>
</head>
<body>
<script>
description("Test various valid name for elements according to the definition of DOM Level 2.")
var nameList = [
// Invalid first Char
'0ascii',
'.Ascii',
'-Ascii',
' ascii',
' ascii',
'֑sc.ii',
'⃣scii',
'िascii',
'ʳascii',
// Invalid other char
'asc i',
'asc i',
'asciiⅦ'
];
for (var i in nameList)
shouldThrow("document.createElement('" + nameList[i] +"')");
</script>
</body>
</html>