gecko-dev/layout/forms/crashtests/1471157.html

12 строки
311 B
HTML

<!doctype html>
<input type="file">
<script>
onload = function() {
var input = document.querySelector("input");
console.log(input.offsetWidth); // Force layout flush and hence layout box
// creation.
input.dispatchEvent(new DragEvent("drop"));
}
</script>