mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
layout: Disable the speculation of block formatting contexts' inline
sizes if the block formatting contexts have negative margins. The heuristics that determine how and whether floats flow into the margins are not valid in that case. Closes #13299.
This commit is contained in:
parent
1fee88e59c
commit
b4aea115b8
4 changed files with 195 additions and 26 deletions
|
@ -652,6 +652,18 @@
|
|||
"url": "/_mozilla/css/block_formatting_context_max_width_a.html"
|
||||
}
|
||||
],
|
||||
"css/block_formatting_context_negative_margins_a.html": [
|
||||
{
|
||||
"path": "css/block_formatting_context_negative_margins_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/block_formatting_context_negative_margins_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/block_formatting_context_negative_margins_a.html"
|
||||
}
|
||||
],
|
||||
"css/block_formatting_context_overflow_a.html": [
|
||||
{
|
||||
"path": "css/block_formatting_context_overflow_a.html",
|
||||
|
@ -10058,6 +10070,18 @@
|
|||
"url": "/_mozilla/css/block_formatting_context_max_width_a.html"
|
||||
}
|
||||
],
|
||||
"css/block_formatting_context_negative_margins_a.html": [
|
||||
{
|
||||
"path": "css/block_formatting_context_negative_margins_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/block_formatting_context_negative_margins_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/block_formatting_context_negative_margins_a.html"
|
||||
}
|
||||
],
|
||||
"css/block_formatting_context_overflow_a.html": [
|
||||
{
|
||||
"path": "css/block_formatting_context_overflow_a.html",
|
||||
|
|
|
@ -0,0 +1,69 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<!-- Original URL: http://fvsch.com/code/bugs/servo-negative-margins-width/ -->
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="UTF-8">
|
||||
<title>Servo test case: wrong block width with negative margins and overflow</title>
|
||||
<link rel="match" href="block_formatting_context_negative_margins_ref.html">
|
||||
<style>
|
||||
main {
|
||||
border: solid 5px red;
|
||||
margin: 20px;
|
||||
padding: 5px 35px;
|
||||
}
|
||||
section {
|
||||
margin: 0;
|
||||
}
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
.test {
|
||||
color: blue;
|
||||
border: solid 5px;
|
||||
padding: 5px;
|
||||
margin: 5px -40px;
|
||||
background-color: #00f1;
|
||||
}
|
||||
.w100 {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
}
|
||||
.test code {
|
||||
visibility: hidden;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<main>
|
||||
<h1>Servo test case: wrong block width with negative margins and overflow</h1>
|
||||
|
||||
<section>
|
||||
<h2>With <code>width: auto</code></h2>
|
||||
<p>The following blocks have negative margins on the sides. They
|
||||
should end up being as large as the red container, with their left and
|
||||
right borders should overlap the container’s border.</p>
|
||||
<p>In Servo Nightly 0.0.1-e3d946b (2016-09-16), when the value of <code>overflow</code> is not <code>visible</code>, the rendered width is wrong (as if a <code>box-sizing: border-box; width: 100%;</code> had been applied).</p>
|
||||
<div class="test" style="overflow: visible;"></div>
|
||||
<div class="test" style="overflow: scroll;"></div>
|
||||
<div class="test" style="overflow: auto;"></div>
|
||||
<div class="test" style="overflow-y: auto;"></div>
|
||||
<div class="test" style="overflow: hidden;"></div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>With <code>box-sizing: border-box; width: 100%</code></h2>
|
||||
<p>If we do use <code>box-sizing: border-box; width: 100%;</code>, for the <code>overflow: visible</code> block we get the expected rendering, but for the other values the width is wrong once again.</p>
|
||||
<div class="test w100" style="overflow: visible;"></div>
|
||||
<div class="test w100" style="overflow: scroll;"></div>
|
||||
<div class="test w100" style="overflow: auto;"></div>
|
||||
<div class="test w100" style="overflow-y: auto;"></div>
|
||||
<div class="test w100" style="overflow: hidden;"></div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
|
||||
|
||||
|
||||
</body></html>
|
|
@ -0,0 +1,69 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<!-- Original URL: http://fvsch.com/code/bugs/servo-negative-margins-width/ -->
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="UTF-8">
|
||||
<title>Servo test case: wrong block width with negative margins and overflow</title>
|
||||
<style>
|
||||
main {
|
||||
border: solid 5px red;
|
||||
margin: 20px;
|
||||
padding: 5px 35px;
|
||||
}
|
||||
section {
|
||||
margin: 0;
|
||||
}
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
.test {
|
||||
color: blue;
|
||||
border: solid 5px;
|
||||
padding: 5px;
|
||||
margin: 5px -40px;
|
||||
background-color: #00f1;
|
||||
}
|
||||
.w100 {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
}
|
||||
.test code {
|
||||
visibility: hidden;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<main>
|
||||
<h1>Servo test case: wrong block width with negative margins and overflow</h1>
|
||||
|
||||
<section>
|
||||
<h2>With <code>width: auto</code></h2>
|
||||
<p>The following blocks have negative margins on the sides. They
|
||||
should end up being as large as the red container, with their left and
|
||||
right borders should overlap the container’s border.</p>
|
||||
<p>In Servo Nightly 0.0.1-e3d946b (2016-09-16), when the value of <code>overflow</code> is not <code>visible</code>, the rendered width is wrong (as if a <code>box-sizing: border-box; width: 100%;</code> had been applied).</p>
|
||||
<div class="test" style="overflow: visible;"></div>
|
||||
<div class="test" style="overflow: visible;"></div>
|
||||
<div class="test" style="overflow: visible;"></div>
|
||||
<div class="test" style="overflow: visible;"></div>
|
||||
<div class="test" style="overflow: visible;"></div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>With <code>box-sizing: border-box; width: 100%</code></h2>
|
||||
<p>If we do use <code>box-sizing: border-box; width: 100%;</code>, for the <code>overflow: visible</code> block we get the expected rendering, but for the other values the width is wrong once again.</p>
|
||||
<div class="test w100" style="overflow: visible;"></div>
|
||||
<div class="test w100" style="overflow: visible;"></div>
|
||||
<div class="test w100" style="overflow: visible;"></div>
|
||||
<div class="test w100" style="overflow-y: visible;"></div>
|
||||
<div class="test w100" style="overflow: visible;"></div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
|
||||
|
||||
|
||||
</body></html>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue