[Webkit-unassigned] [Bug 50363] display:none not being recognized with CSS3 + DOM Manipulation

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Nov 30 19:33:03 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=50363


Luke Macpherson <macpherson at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |macpherson at chromium.org




--- Comment #2 from Luke Macpherson <macpherson at chromium.org>  2011-11-30 19:33:03 PST ---
I can't reproduce this bug.

<style>
.x { display: none; }
.x[data-attribute] { display: block; }
</style>

<body onload='document.querySelectorAll(".x")[0].removeAttribute("data-attribute");'>
<div class="x" data-attribute="1">Element 1</div>
<div class="x" data-attribute="1">Element 2</div>
<div class="x" data-attribute="1">Element 3</div>
</body>

With this test I see Element 1 appear and then quickly disappear on the page has loaded.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list