Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / web / tests / data / ime-on-focus-on-user-gesture.html
1 <!DOCTYPE html>
2 <div id="button" style="width: 200px; height: 200px"></div>
3 <input type="text" id="input"></input>
4 <script>
5 document.querySelector("#button").addEventListener("click", function() {
6     document.querySelector("#input").focus();
7 });
8 </script>