☠☠ backed out by dec0a179f851 ☠ ☠ | |
author | Alison Maher <almaher@microsoft.com> |
Sat, 17 Jul 2021 09:49:31 +0000 | |
changeset 585820 | 03792f0f502882caf88e687e1cfcca068c103e63 |
parent 585819 | eacd82ff57d5cd86e0f5ae33f58de06dc04a6019 |
child 585821 | 07c998f93a3c50ad3f2a1d014937da784167138f |
push id | 38620 |
push user | csabou@mozilla.com |
push date | Sun, 18 Jul 2021 09:08:29 +0000 |
treeherder | mozilla-central@cc4e5ea0c986 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1719591, 29604, 1227115, 3011454, 900671 |
milestone | 92.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
new file mode 100644 --- /dev/null +++ b/testing/web-platform/tests/css/css-break/out-of-flow-in-multicolumn-064.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<title> + Out-of-flow positioned element in multicol with vertical-rl writing mode. +</title> +<link rel="help" href="https://www.w3.org/TR/css-position-3/#abspos-breaking"> +<link rel="match" href="../reference/ref-filled-green-100px-square.xht"> +<style> + .multicol { + writing-mode: vertical-rl; + columns: 2; + column-fill: auto; + column-gap: 0; + height: 100px; + width: 100px; + background: red; + color: red; + } + .abs { + position: absolute; + inline-size: 50px; + block-size: 200px; + inset-block-start: 0; + inset-inline-start: 0; + background: green; + } +</style> +<p>Test passes if there is a filled green square and <strong>no red</strong>.</p> +<div class="multicol"> + <div style="position: relative;"> + FAIL + <div class="abs"></div> + </div> +</div>
new file mode 100644 --- /dev/null +++ b/testing/web-platform/tests/css/css-break/out-of-flow-in-multicolumn-065.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<title> + Nested out-of-flow positioned element in multicol with vertical-rl writing + mode. +</title> +<link rel="help" href="https://www.w3.org/TR/css-position-3/#abspos-breaking"> +<link rel="match" href="../reference/ref-filled-green-100px-square.xht"> +<style> + .multicol { + writing-mode: vertical-rl; + columns: 2; + column-fill: auto; + column-gap: 0; + height: 100px; + width: 100px; + background: red; + color: red; + } + .fixed { + position: fixed; + inline-size: 50px; + block-size: 200px; + inset-block-start: 0; + inset-inline-start: 0; + background: green; + } +</style> +<p>Test passes if there is a filled green square and <strong>no red</strong>.</p> +<div class="multicol"> + <div style="transform: translateX(0);"> + FAIL + <div style="position: relative;"> + <div style="position: absolute;"> + <div class="fixed"></div> + </div> + </div> + </div> +</div>