Bug 1770047 [wpt PR 34117] - [Clipboard API] Clipboard Web Custom Formats implementat...
[gecko.git] / testing / web-platform / tests / compat / webkit-box-fixed-position-child.html
blobbb61b63133b402e92d0444e7afb3f4c4b9f311c6
1 <!doctype html>
2 <title>Verifies changing 'display' with a fixed position webkit-box that
3 has a fixed position child</title>
4 <body>
5 <div id="outer" style="position:fixed;">
6 <div style="display:-webkit-box; float:left; padding-left:100%;">
7 <div style="position:fixed; width:100px; height:100px;"></div>
8 </div>
9 <div style="display:inline-block; width:100px; height:20px;"></div>
10 </div>
11 <div id="elm"></div>
13 </body>
14 <script>
15 document.body.offsetTop;
16 elm.style.display = 'none';
17 </script>