mirror of
https://github.com/servo/servo.git
synced 2025-08-21 21:35:32 +01:00
Auto merge of #13765 - pcwalton:relative-position-vertical-percentage, r=emilio
layout: Make percentages in `top` and `bottom` for relative positions relative to height, not width. Improves etsy.com. Closes #13760. r? @mbrubeck <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13765) <!-- Reviewable:end -->
This commit is contained in:
commit
759185abe0
14 changed files with 81 additions and 40 deletions
|
@ -1,3 +0,0 @@
|
|||
[bottom-103.htm]
|
||||
type: reftest
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[bottom-104.htm]
|
||||
type: reftest
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[bottom-113.htm]
|
||||
type: reftest
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[position-relative-nested-001.htm]
|
||||
type: reftest
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[relpos-calcs-007.htm]
|
||||
type: reftest
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[top-103.htm]
|
||||
type: reftest
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[top-104.htm]
|
||||
type: reftest
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[top-113.htm]
|
||||
type: reftest
|
||||
expected: FAIL
|
|
@ -1,3 +0,0 @@
|
|||
[top-114.htm]
|
||||
type: reftest
|
||||
expected: FAIL
|
|
@ -4668,6 +4668,18 @@
|
|||
"url": "/_mozilla/css/quotes_simple_a.html"
|
||||
}
|
||||
],
|
||||
"css/relative_position_vertical_percentage_a.html": [
|
||||
{
|
||||
"path": "css/relative_position_vertical_percentage_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/relative_position_vertical_percentage_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/relative_position_vertical_percentage_a.html"
|
||||
}
|
||||
],
|
||||
"css/removeproperty.html": [
|
||||
{
|
||||
"path": "css/removeproperty.html",
|
||||
|
@ -18474,6 +18486,18 @@
|
|||
"url": "/_mozilla/css/quotes_simple_a.html"
|
||||
}
|
||||
],
|
||||
"css/relative_position_vertical_percentage_a.html": [
|
||||
{
|
||||
"path": "css/relative_position_vertical_percentage_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/relative_position_vertical_percentage_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/relative_position_vertical_percentage_a.html"
|
||||
}
|
||||
],
|
||||
"css/removeproperty.html": [
|
||||
{
|
||||
"path": "css/removeproperty.html",
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<link rel="match" href="relative_position_vertical_percentage_ref.html">
|
||||
<style>
|
||||
body, html {
|
||||
margin: 0;
|
||||
}
|
||||
#a {
|
||||
height: 200px;
|
||||
width: 600px;
|
||||
background: gold;
|
||||
}
|
||||
#b {
|
||||
position: relative;
|
||||
top: 50%;
|
||||
}
|
||||
</style>
|
||||
<div id=a><div id=b>X
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
body, html {
|
||||
margin: 0;
|
||||
}
|
||||
#a {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 200px;
|
||||
width: 600px;
|
||||
background: gold;
|
||||
}
|
||||
#b {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
left: 0px;
|
||||
}
|
||||
</style>
|
||||
<div id=a></div><div id=b>X
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue