[Webkit-unassigned] [Bug 139645] New: clicking on select list item makes hidden layer visible
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Dec 15 05:27:30 PST 2014
https://bugs.webkit.org/show_bug.cgi?id=139645
Bug ID: 139645
Summary: clicking on select list item makes hidden layer
visible
Classification: Unclassified
Product: WebKit
Version: 528+ (Nightly build)
Hardware: PC
OS: Windows 8
Status: NEW
Severity: Major
Priority: P2
Component: New Bugs
Assignee: webkit-unassigned at lists.webkit.org
Reporter: artur.kwiatkowski at assertis.co.uk
I've got a fiddle here: http://jsfiddle.net/fjjr6sq2/1/ which is really simple function
$(".dropdown li").on("mouseenter", function(){
$(this).find(".layer").addClass("active");
}).on("mouseleave", function(){
$(this).find(".layer").removeClass("active");
});
which shows and hides the layer when you mouseenter/mouseleave particular list item. If you exchange the mouseenter/mouseleave with hover function the result is likewise.
This problem exists only on webkit browsers.
The problem:
When I select one of the first elements from the _select list_ then the layer shows suddenly and of course it should not since it's unrelated to the layer itself.
Layer should only show itself (gain/loose active class) when I hover on the particular list item not when I click on any position in select box.
My Chrome version is: 39.0.2171.95 m
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20141215/e9fa615a/attachment-0002.html>
More information about the webkit-unassigned
mailing list