no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / base / tests / bug1634743-1-ref.html
blob55d036635923df3e7f9f0ce56ecf6540853403c3
1 <!doctype html>
2 <html class="reftest-wait">
3 <title>Test reference</title>
4 <script src="/tests/SimpleTest/SimpleTest.js"></script>
5 <style>
6 div {
7 outline: 2px solid blue;
8 line-height: 5;
9 border: 1px solid gray;
10 padding: 8px;
12 </style>
13 <div contenteditable="true" spellcheck="false">abc</div>
14 <script>
15 SimpleTest.waitForFocus(function() {
16 document.querySelector('[contenteditable="true"]').focus();
17 requestAnimationFrame(function() {
18 requestAnimationFrame(function() {
19 document.documentElement.removeAttribute("class");
20 });
21 });
22 });
23 </script>