s5222455 / javachromiumembedded

Automatically exported from code.google.com/p/javachromiumembedded
0 stars 0 forks source link

textbox's onblur event triggers error:onblur->onfocus->onblur #144

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
<html>
<head>
<title></title>
<meta charset="UTF-8"/>
<script src="" type="text/javascript" charset="utf-8"></script>
<script>
function testf(msg){
document.getElementById("fdiv").innerText+=msg+",";
}
</script>
</head>
<body>
<input type="text" onfocus="testf('onfocus');" onblur="testf('onblur');">
<input type="text" onfocus="testf('onfocus');" onblur="testf('onblur');" />
<div id="fdiv"></div>
</body>
</html>

as above,when using mouse to trigger blur event,"fdiv" displays result is 
"onblur,onfocus,onblur".
expected:"onblur"

based on:jcef_binary_3.1750.1738.91_windows64

Original issue reported on code.google.com by xiwa...@gmail.com on 12 Jan 2015 at 8:28

GoogleCodeExporter commented 8 years ago
JCEF is transitioning from Google Code to Bitbucket project hosting. If you 
would like to continue receiving notifications on this issue please add 
yourself as a Watcher at the new location: 
https://bitbucket.org/chromiumembedded/java-cef/issue/144

Original comment by magreenb...@gmail.com on 18 Mar 2015 at 6:01