mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
ede8c44ef2
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 --HG-- extra : moz-landing-system : lando
23 lines
751 B
HTML
23 lines
751 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<script src="/tests/SimpleTest/EventUtils.js"></script>
|
|
</head>
|
|
<body onload="start()">
|
|
<iframe srcdoc="<body contenteditable spellcheck=false><br /><div></div></body>"></iframe>
|
|
<script>
|
|
function start() {
|
|
var iframe = document.querySelector("iframe");
|
|
var win = iframe.contentWindow;
|
|
var doc = iframe.contentDocument;
|
|
iframe.focus();
|
|
doc.body.focus();
|
|
win.getSelection().collapse(doc.body, 0);
|
|
sendString("Here's some text.");
|
|
synthesizeKey("KEY_Enter");
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|