- From: <bugzilla@jessica.w3.org>
- Date: Wed, 14 May 2014 10:10:31 +0000
- To: public-webapps-bugzilla@w3.org
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