Bug 1535077 - Switch to using Ref and PureComponent in the SearchBox component. r...
[gecko.git] / layout / reftests / bugs / 520421-1.html
blob399a89e50e5b7c8e6713eabf362ab8af40e93e52
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 div {
6 background-color: red;
8 div[mixedCase=true] {
9 background-color: green !important;
11 </style>
12 <script>
13 function f() {
14 document.getElementById("t").setAttribute("mixedCase", "true");
15 document.documentElement.className = "";
17 window.addEventListener("MozReftestInvalidate", f);
18 </script>
19 </head>
20 <body>
21 <div id="t">text</div>
22 </body>
23 </html>