Skip to content

Commit

Permalink
Minimize and rename oof-in-nested-multicol
Browse files Browse the repository at this point in the history
This patch minimizes and renames the `oof-in-nested-multicol`
test to `nested-oofs-in-relative-multicol`, as a follow up to
the CL review comment[1].

[1] https://chromium-review.googlesource.com/c/chromium/src/+/3752215/comments/239b0283_138709fb

Change-Id: If3ecc4d7e580ca5d873c20261a5ebc5dd3593644
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3759043
Auto-Submit: Koji Ishii <kojii@chromium.org>
Reviewed-by: Xianzhu Wang <wangxianzhu@chromium.org>
Commit-Queue: Koji Ishii <kojii@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1023478}
  • Loading branch information
kojiishi authored and Chromium LUCI CQ committed Jul 12, 2022
1 parent 11c0041 commit ac02c05
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 31 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<link rel="match" href="reference/oof-in-nested-multicol-ref.html">
<link rel="match" href="reference/nested-oofs-in-relative-multicol-ref.html">
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/#propdef-column-count">
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<style>
Expand All @@ -12,11 +12,6 @@
overflow: hidden;
background: yellow;
}
.nested {
height: 400px;
column-count: 2;
background: purple;
}
.cb {
position: absolute;
top: 0;
Expand All @@ -25,20 +20,19 @@
height: 400px;
background: red;
}
img {
.img {
position: absolute;
top: 0;
left: 0;
width: 400px;
height: 400px;
background: green;
}
</style>
<body>
<div class="outer">
<div class="nested">
<div class="cb">
<img src="data:image/gif;base64,R0lGODlhAQABAGAAACH5BAEKAP8ALAAAAAABAAEAAAgEAP8FBAA7">
</div>
<div class="cb">
<div class="img"></div>
</div>
</div>
</body>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<style>
.outer {
position: relative;
margin-left: 100px;
width: 400px;
height: 400px;
background: green;
}
</style>
<body>
<div class="outer"></div>
</body>

This file was deleted.

0 comments on commit ac02c05

Please sign in to comment.