fix follow for contenteditable
This commit is contained in:
parent
10beccfab2
commit
4646e8b18d
3 changed files with 17 additions and 4 deletions
|
@ -1,9 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<a href='#' >link</a>
|
||||
<a id='visible_a' href='#' >link</a>
|
||||
<a href='#' style='display:none'>invisible 1</a>
|
||||
<a href='#' style='visibility:hidden'>invisible 2</a>
|
||||
<i>not link<i>
|
||||
<div id='editable_div_1' contenteditable>link</div>
|
||||
<div id='editable_div_2' contenteditable='true'>link</div>
|
||||
<div id='x' contenteditable='false'>link</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Reference in a new issue