blob: bc8251091b71203e49a743dec7b8d594324b1f28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>Test reference for bug 1423331: Contenteditable insertion with pseudo-elements</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
#editable {
outline: 1px solid black;
width: 300px;
height: 100px;
}
#editable::before {
content: "Write here";
}
</style>
<div id="editable" contenteditable></div>
<script>
SimpleTest.waitForFocus(function() {
document.getElementById("editable").focus();
document.documentElement.className = "";
});
</script>
</html>
|