-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't allow column spanners inside transforms.
A transform establishes a containing block for "everything", including fixed-positioned descendants. Letting spanners escape this seems strange, and it causes trouble for accessibility in our implementation. See w3c/csswg-drafts#6805 Bug: 1267847, 1225860 Change-Id: Ibcf9af327824a4683d4b33935c3bc28abe61f998
- Loading branch information
1 parent
97baeb1
commit 1731efb
Showing
3 changed files
with
10 additions
and
46 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> | ||
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/6805"> | ||
<meta name="assert" content="Test that column-span all inside a transform doesn't create a spanner"> | ||
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p> | ||
<div style="columns:2; column-fill:auto; column-gap:0; width:100px; height:100px; background:red;"> | ||
<div style="transform:scale(1);"> | ||
<div style="column-span:all; width:50px; height:200px; background:green;"></div> | ||
</div> | ||
</div> |