blob: afdeabe174ef39f10d2aa2db152fbfb32e86df72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1361902">
<div style="columns:1;">
<div style="float:left; padding-top:10px; position:relative;">
<div style="position:absolute; height:2px;"></div>
<div id="elm" style="display:inline-block;"></div>
</div>
<span>
<div style="column-span:all;"></div>
</span>
</div>
<script>
requestAnimationFrame(()=>{
requestAnimationFrame(()=>{
elm.style.display = "none";
document.documentElement.classList.remove("reftest-wait");
});
});
</script>
</html>
|