This excludes dom/, otherwise the file size is too large for phabricator to handle. This is an autogenerated commit to handle scripts loading mochitest harness files, in the simple case where the script src is on the same line as the tag. This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170 using the `--part 2` argument. Differential Revision: https://phabricator.services.mozilla.com/D27456
38 lines
984 B
HTML
38 lines
984 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script src="/tests/SimpleTest/EventUtils.js"></script>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<style>
|
|
input, input:active { border: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<input id="input1" value="aaaaaaaaaaaaaaaaaaaa">
|
|
<div id=div1 style="height: 100px;">
|
|
<textarea id="textarea1"></textarea>
|
|
</div>
|
|
<script>
|
|
SimpleTest.waitForFocus(() => {
|
|
let div1 = document.getElementById('div1');
|
|
let textarea1 = document.getElementById('textarea1');
|
|
div1.addEventListener("drop", e => {
|
|
e.preventDefault();
|
|
|
|
textarea1.style = "display: none;";
|
|
SimpleTest.executeSoon(() => {
|
|
synthesizeKey("A");
|
|
document.documentElement.removeAttribute("class");
|
|
});
|
|
});
|
|
|
|
let input1 = document.getElementById('input1');
|
|
input1.focus();
|
|
input1.setSelectionRange(0, input1.value.length);
|
|
|
|
synthesizeDrop(input1, textarea1, [[{type: "text/plain", data: "foo"}]]);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|