Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>HTML Test: dropzone_attribute_inputbox_element_dbcs</title>
<link rel='author' title='Intel' href='http://www.intel.com'>
<script src='/resources/testharness.js'></script>
<script src='/resources/testharnessreport.js'></script>
<style>
#drop {
border: 2px solid black;
width: 100px;
height: 100px;
padding: 20px;
}
input {
color: blue;
margin: 20px auto;
}
</style>
</head>
<body>
<div>Select all the inputbox DBCS (Double Byte Character Set) text then drag to rectangular box.</div>
<input draggable='true' type='text' value='您好,互联网。'></input>
<div id='drop' dropzone='move string:text/plain'></div>
<div id='log'> </div>
<script>
var drop;
setup(function() {
drop = document.querySelector('#drop');
}, {explicit_done: true, explicit_timeout: true});
on_event(drop, 'drop', function(event) {
test(function() {
var item = item = event.dataTransfer.items[0];
assert_equals(event.dataTransfer.getData(item.type), '您好,互联网。', 'The dropped string value is the inputbox text you selected.');
}, 'The dropped string value is the inputbox text you selected.');
done();
});
</script>
</body>
</html>