Bug 1731994: part 4) Declare more methods around `ContentPermissionRequestBase` ...
[gecko.git] / layout / reftests / display-list / 1709452-1.html
blobf9fb28cbcae4ae8e0b3d9022d7df5e6504c6f3f8
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <meta charset="UTF-8">
5 <style>
6 a {
7 color: rgb(255, 0, 0);
9 </style>
10 </head>
12 <body>
13 <div style="display: flex;">
14 <div style="display: block;">
15 <div style="display: inline; filter: invert(0);">
16 <a href="#">
17 <span>FOO</span>
18 </a>
19 <div style="position: absolute; top: 100px; left: 100px;">
20 <a id="bar" href="#">BAR</a>
21 </div>
22 </div>
23 </div>
24 </div>
25 <script>
26 function doTest() {
27 const bar = document.getElementById('bar');
28 bar.style.color = 'rgb(0, 255, 0)';
29 document.documentElement.removeAttribute('class');
31 document.addEventListener("MozReftestInvalidate", doTest, false);
32 </script>
33 </body>
34 </html>