Bug 1535077 - Switch to using Ref and PureComponent in the SearchBox component. r...
[gecko.git] / layout / reftests / bugs / 613433-2-ref.html
blob7bb9d9f1530a375021ad5acc7f949c3872500a1a
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 div {
6 min-height: 36px;
8 </style>
9 <script>
10 function test() {
11 var d = document.querySelector("div");
12 d.appendChild(document.createTextNode(""));
13 d.focus();
15 function focusTriggered() {
16 document.documentElement.removeAttribute("class");
18 </script>
19 </head>
20 <body onload="test()">
21 <div contenteditable onfocus="focusTriggered()"></div>
22 </body>
23 </html>