summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug1423331-2.html
blob: 9615a29bd471be6b27caf15277a71bf5ac1dc248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>Test for bug 1423331: Contenteditable insertion with pseudo-elements</title>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
#editable {
  outline: 1px solid black;
  width: 300px;
  height: 100px;
}
#editable:empty::before {
  content: "Write here";
}
</style>
<div id="editable" contenteditable></div>
<script>
SimpleTest.waitForFocus(function() {
  SimpleTest.executeSoon(() => {
    let div = document.getElementById("editable");
    synthesizeMouseAtCenter(div, {});
    synthesizeMouseAtCenter(div, {});
    sendString("xxx");
    document.documentElement.className = "";
  });
});
</script>
</html>