mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
98491d0687
- Bug 382721 - Part 1: Fix spacing of simple 2px dotted border without radius. r=jrmuizel (8e83589f45)
- Bug 382721 - Part 2: Split constants for border rendering to BorderConsts.h. r=jrmuizel (88ae5aee7f)
- Bug 1237805 part 1 - [css-grid] Remove all empty 'auto-fit' tracks, not just those at the end. r=dholbert (1c0530b87b)
- Bug 1237805 part 2 - [css-grid] 'auto-fit' reftest removing empty start/middle tracks. (3bfc688e2b)
- Bug 1239036 - [css-grid] Deal with implicit tracks when computing grid-template-{columns,rows}. r=dholbert (cf36d9193a)
- Bug 1239036 - [css-grid] Tests. (4aaec0499f)
- Bug 1238294 part 1 - [css-grid] Make GridLineEdge() a method on the Tracks class rather than a static function (idempotent change). r=dholbert (ab81994ec6)
- Bug 1238294 part 2 - [css-grid] Treat any gaps at the grid edges as "line thickness" so they behave the same as gaps between tracks for positioning areas. r=dholbert (fafdc1ceef)
- Bug 1230695 - [css-grid] More abs.pos. grid alignment reftests. (330770cf1a)
- Bug 1238294 part 3 - [css-grid] Add/tweak reftests for new behavior of gaps at the grid edges. (58ff8670a1)
- Bug 1240795 - [css-grid] Refactor GetComputedTemplateColumns/Rows to return a self-contained value. r=dholbert (9c5e68418f)
- Bug 1229739 - Use the color of shadow if available for drawing emphasis marks in shadow. r=jfkthame (c19c3deb1c)
- Bug 1191597 part 3 - Convert fullscreen-api-keys to a browser chrome test. r=smaug (ad740d4c4c)
- Bug 1174575 - Part 1: Define CSSPseudoElement interface. r=birtles, r=smaug (1a304d59c4)
- Bug 1214536 - Part 1: Use unrestricted double for iterations. r=birtles (0dbb02e423)
- Bug 1214536 - Part 2: Replace mIterationCount in layers::Animation. r=birtles (8a573046f5)
- Bug 1214536 - Part 3: Store the original value of fill. r=birtles (df548c244a)
- Bug 1214536 - Part 4: Use OwingUnrestrictedDoubleOrString for duration. r=birtles (567cfd1555)
- Bug 1214536 - Part 5: Add AnimationEffectTimingReadOnly interface. r=birtles, r=smaug (47138ec7f0)
- Bug 1214536 - Part 6: Revise AnimationTiming::operator==. r=birtles (616fc2c711)
- Bug 1214536 - Part 7: Rename AnimationTiming as TimingParams. r=birtles, r=smaug (d7de0ec72b)
- Bug 1214536 - Part 8: Add an operator=() for TimingParams. r=birtles (bfe22c6501)
- Bug 1215406 - Part 6: Test. r=birtles (3f16796304)
- Bug 1214536 - Part 9: Test. r=birtles (526419cc1d)
- Bug 1147673 - Unadjust clip before intersecting it with the scroll clip. r=botond (85cd06d2d5)
- Bug 1147673 - Determine more accurately whether an async transform affects a layer's clip rect. r=kats (8ce7d1e887)
- Bug 1096773 part 1 - Make the frames argument to the KeyframeEffectReadOnly constructor NOT optional; r=bz (6e63b08671)
- Bug 1096773 part 2 - Add a KeyframeEffectReadOnly constructor that takes a TimingParams argument; r=boris (24971306e6)
- Bug 1096773 part 3 - Implement Animatable.animate(); r=bz (9d95ea800e)
- Bug 1096773 part 4 - Add tests for Animatable.animate(); r=bz (03b866b2d8)
- Bug 1179627 - Part 1: Implement Animation.id. r=smaug, r=birtles (51bbed6e9d)
- Bug 1096774 - Part 1: Implement Animation Constructor. r=birtles, r=smaug (e09d7fbd7c)
- Bug 1179627 - Part 2: Add animation.id for CSS animations test files. r=bbirtles, r=hiikezoe (329ea31f33)
- Bug 1096774 - Part 2: Fix crash if animation has no timeline. r=birtles (d989b44866)
- Bug 1096774 - Part 3: Tests for Animation Contructor. r=birtles (23786774bc)
- Bug 1240265 - Annotate intentional switch fallthroughs in dom/. r=mrbkap (ffd9da3d5f)
- Bug 1227458. Make setAttributeNode be an alias for setAttributeNodeNS and setNamedItem on the attribute map be an alias for setNamedItemNS. r=smaug (f804d28b93)
- Bug 1226091 - Use MayHaveAnimations in Element::UnbindFromTree; r=smaug (1ec85f75b3)
121 lines
2.9 KiB
HTML
121 lines
2.9 KiB
HTML
<!DOCTYPE HTML>
|
|
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<html><head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Grid Test: grid abs.pos. child in grid with gutters</title>
|
|
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1230695">
|
|
<link rel="help" href="https://drafts.csswg.org/css-grid/#abspos">
|
|
<link rel="match" href="grid-abspos-items-013-ref.html">
|
|
<style type="text/css">
|
|
body { width:800px; }
|
|
|
|
.grid {
|
|
display: grid;
|
|
position: relative;
|
|
grid-template-columns: repeat(5, 20px);
|
|
grid-auto-rows: 10px;
|
|
grid-gap: 100px 10px;
|
|
border: 1px solid;
|
|
padding: 0 3px 0 5px;
|
|
height: 40px;
|
|
margin-bottom: 2px;
|
|
}
|
|
.grid.r {
|
|
grid-template-columns: 20px;
|
|
grid-template-rows: repeat(5, 20px);
|
|
height: 160px;
|
|
padding: 2px 3px 4px 5px;
|
|
float: left;
|
|
min-width: 70px;
|
|
margin-right: 2px;
|
|
}
|
|
.c.s {
|
|
justify-content: space-evenly;
|
|
grid-gap: 0;
|
|
}
|
|
|
|
x {
|
|
background: lime;
|
|
}
|
|
|
|
a {
|
|
position: absolute;
|
|
left:0; right:0; bottom:20px; height: 3px;
|
|
background: black;
|
|
}
|
|
b {
|
|
position: absolute;
|
|
left:0; right:0; bottom:10px; height: 3px;
|
|
background: grey;
|
|
}
|
|
c {
|
|
position: absolute;
|
|
left:0; right:0; bottom:0; height: 3px;
|
|
background: blue;
|
|
}
|
|
|
|
.r a {
|
|
left:50px; top:0; bottom:0; width: 3px; height:auto;
|
|
}
|
|
.r b {
|
|
left:40px; top:0; bottom:0; width: 3px; height:auto;
|
|
}
|
|
.r c {
|
|
left:30px; top:0; bottom:0; width: 3px; height:auto;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="grid c">
|
|
<x></x><x></x><x></x><x></x>
|
|
<a style="grid-column:2/4"></a><b style="grid-column:auto/4"></b><c style="grid-column:4/auto"></c>
|
|
</div>
|
|
|
|
<div class="grid c">
|
|
<x></x><x></x><x></x><x></x>
|
|
<a style="grid-column:1/4"></a><b style="grid-column:auto/1"></b><c style="grid-column:1/auto"></c>
|
|
</div>
|
|
|
|
<div class="grid c">
|
|
<x></x><x></x><x></x><x></x>
|
|
<a style="grid-column:6/6"></a><b style="grid-column:auto/6"></b><c style="grid-column:6/auto"></c>
|
|
</div>
|
|
|
|
<div class="grid c s">
|
|
<x></x><x></x><x></x><x></x>
|
|
<a style="grid-column:2/4"></a><b style="grid-column:auto/4"></b><c style="grid-column:4/auto"></c>
|
|
</div>
|
|
|
|
<div class="grid c s">
|
|
<x></x><x></x><x></x><x></x>
|
|
<a style="grid-column:1/4"></a><b style="grid-column:auto/1"></b><c style="grid-column:1/auto"></c>
|
|
</div>
|
|
|
|
<div class="grid c s">
|
|
<x></x><x></x><x></x><x></x>
|
|
<a style="grid-column:6/6"></a><b style="grid-column:auto/6"></b><c style="grid-column:6/auto"></c>
|
|
</div>
|
|
|
|
<div class="grid r">
|
|
<x></x><x></x><x></x><x></x>
|
|
<a style="grid-row:2/4"></a><b style="grid-row:auto/4"></b><c style="grid-row:4/auto"></c>
|
|
</div>
|
|
|
|
<div class="grid r">
|
|
<x></x><x></x><x></x><x></x>
|
|
<a style="grid-row:1/4"></a><b style="grid-row:auto/1"></b><c style="grid-row:1/auto"></c>
|
|
</div>
|
|
|
|
<div class="grid r">
|
|
<x></x><x></x><x></x><x></x>
|
|
<a style="grid-row:6/6"></a><b style="grid-row:auto/6"></b><c style="grid-row:6/auto"></c>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|