Bug 1874684 - Part 37: Fix unified compilation. r=allstarschh
[gecko.git] / layout / style / crashtests / 1384824-1.html
blob6dcf485f0ec4ee0daa17587856de49db82741067
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <style>
4 textarea {
5 min-height: 100px;
7 </style>
8 <div>
9 <iframe src="about:blank"></iframe>
10 </div>
11 <script>
12 let div = document.querySelector('div');
13 let iframe = document.querySelector('iframe');
14 iframe.onload = function() {
15 let doc = iframe.contentDocument;
16 let e = doc.createElement('textarea');
17 doc.body.appendChild(e);
18 setTimeout(function() {
19 getComputedStyle(e).minHeight;
20 div.style.display = 'none';
21 setTimeout(function() {
22 getComputedStyle(e).minHeight;
23 document.documentElement.className = "";
24 }, 0);
25 }, 0);
27 </script>