зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
556 B
HTML
24 строки
556 B
HTML
<!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>
|