blob: bad821f302ac2be30d065e8a6281eccabea35752 [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-pre.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',
'\u037Eascii',
// Invalid other char
'asc i',
'asc i',
];
for (var i in nameList)
shouldThrowErrorName("document.createElement('" + nameList[i] +"')", "InvalidCharacterError");
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>