blob: 5d6da588ede09b6a9d965912ce3d27f78f224f0d [file] [log] [blame]
<!DOCTYPE html>
<html>
<script src="../../../resources/js-test.js"></script>
<script>
debug("Check the classlist length attribute for empty strings");
var div = document.createElement('div');
div.className = ' ';
shouldBe("div.className.length", "3");
div.className = ' ';
shouldBe("div.className.length", "5");
</script>
</html>