https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e15d2c1a2afc866b09d31558d1af451227be2dca authored by Raymond Toy on 20 September 2018, 21:42:05 UTC
Sub-sample accurate start for ABSN
Tip revision: e15d2c1
filter-cb-abspos-inline-003-ref.html
<!DOCTYPE html>
<meta charset=UTF-8>
<title>CSS Filter: Establishing containing block for absolutely-positioned elements, on an inline element</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/">
<meta name="flags" content="">
<style>

#abspos {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: blue;
}

</style>

<div>
    <span id="cb">Blue box should be in top-right corner of screen.</span>
</div>
<div id="abspos"></div>
back to top