<head> | |
<meta name="viewport" content="width=device-width"> | |
<style> | |
body { | |
width: 100%; | |
height: 100%; | |
margin: 0; | |
} | |
a, #editor { | |
width: 100%; | |
height: 200px; | |
font-size: 200px; | |
white-space: nowrap; | |
} | |
a { | |
background-image: url(icon.png); | |
background-repeat: no-repeat; | |
display: block; | |
} | |
#editor { | |
border: black 1px solid; | |
} | |
</style> | |
</head> | |
<body> | |
<div><a href="https://www.apple.com"></a></div> | |
<div><input id="editor"></input></div> | |
<script> | |
function postEventType(event) { | |
webkit.messageHandlers.testHandler.postMessage(event.type); | |
} | |
editor.addEventListener("drop", postEventType); | |
editor.addEventListener("dragenter", postEventType); | |
editor.addEventListener("dragover", postEventType); | |
</script> | |
</body> |