| | This test ensures that an element with a non-positioned stacking context |
| | above its positioned containing block will have its offset from the |
| | containing block calculated correctly. The results should display the blue |
| | block directly under the green block. |
| | https://www.w3.org/TR/CSS21/visudet.html#containing-block-details |
| .non-positioned-stacking-context { |
| background-color: rgb(15, 157, 88); |
| background-color: rgb(66, 133, 244); |
| <div class="non-positioned-stacking-context"> |
| <div class="absolute-container"> |
| <div class="positioned-element"></div> |