no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / base / tests / bug1510942-2.html
blob63f067bf306afbdf7235f80e673ea553af1693db
1 <!doctype html>
2 <html class="reftest-wait">
3 <meta charset="utf-8">
4 <title>Test for bug 1510942: Caret in a transformed empty block</title>
5 <script src="/tests/SimpleTest/EventUtils.js"></script>
6 <script src="/tests/SimpleTest/SimpleTest.js"></script>
7 <style>
8 #editable {
9 height: 300px;
10 width: 100px;
11 outline: 1px solid black;
12 opacity: 0;
14 </style>
15 <div id="editable" contenteditable></div>
16 <script>
17 SimpleTest.waitForFocus(function() {
18 document.getElementById("editable").focus();
19 document.documentElement.className ="";
20 });
21 </script>