[Bug 25704] "When an element's id attribute is removed, unse..."

https://www.w3.org/Bugs/Public/show_bug.cgi?id=25704

--- Comment #2 from spiritRKS1910 <crimsteam@gmail.com> ---
And another case:

<p id=""></p>

<script type = "text/javascript">

 alert(document.getElementById("")); // null

 var el = document.getElementsByTagName("p")[0];

 alert(el.getAttribute("id"));
 alert(el.id);
 alert(el.hasAttribute("id")); // true

</script>

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Wednesday, 14 May 2014 10:10:32 UTC