OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <script src="../../../resources/js-test.js"></script> | |
4 <script> | |
5 debug("Check the classlist length attribute for empty strings"); | |
6 var div = document.createElement('div'); | |
7 div.className = ' '; | |
8 shouldBe("div.className.length", "3"); | |
9 | |
10 div.className = ' '; | |
11 shouldBe("div.className.length", "5"); | |
12 </script> | |
13 </html> | |
OLD | NEW |