我发现了最新版本的Chrome(69.0.3497.92)的错误:
https://codepen.io/stouch/pen/PdxOmX
<head>
<style>
.center {
margin: 0 auto;
width: 300px;
padding: 20px;
background: #eee;
}
.center div {
display: inline-block;
}
</style>
</head>
<body>
<div>
<div class="center">
<div contenteditable="true">Hello, I'm a contenteditable inline-block. Click at the left or right outside of my parent div, when I'm not focused. It will focus me on Chrome, without any reason.... Tested on Chrome 69.0.3497.92</div>
</div>
</div>
这就是发生的情况:内联块内容可编辑的HTML元素在Chrome上有奇怪的行为。当它没有被聚焦时,您可以单击它左侧或右侧的任意位置来聚焦,有时甚至是随机地聚焦,您甚至可以通过在div外部进行选择来移动选择和光标。
有人知道Google是否知道该错误并打算修复该错误吗?
谢谢。