mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Update web-platform-tests to revision a4482f355e2848f4623cf46f521cb9b3bca56129
This commit is contained in:
parent
33a74a4f4e
commit
10cafa3df2
86 changed files with 1024 additions and 172 deletions
|
@ -28,8 +28,8 @@ to fit the size of flexitem according to flex values.">
|
|||
<div id=log></div>
|
||||
|
||||
<div class="flexbox">
|
||||
<img data-expected-display="block" data-expected-width="345" style="flex: 1 0 auto;" src="support/100x100-blue.png">
|
||||
<img data-expected-display="block" data-expected-width="255" data-expected-height="100" style="flex: 1 0 auto;" src="support/10x10-green.png">
|
||||
<img data-expected-display="block" data-expected-width="345" data-expected-height="345" style="flex: 1 0 auto;" src="support/100x100-blue.png">
|
||||
<img data-expected-display="block" data-expected-width="255" data-expected-height="345" style="flex: 1 0 auto;" src="support/10x10-green.png">
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Flexbox: Crash caused by negative width in flex box</title>
|
||||
<link rel="author" title="Christian Biesinger" href="mailto:cbiesinger@chromium.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#box-model">
|
||||
<link rel="issue" href="https://crbug.com/490423">
|
||||
<meta name="assert" content="Check that crash doesn't happen in flex box with negative margin.">
|
||||
|
||||
<style>
|
||||
div {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.inner {
|
||||
margin-left: -4em;
|
||||
}
|
||||
</style>
|
||||
<div>
|
||||
<div>
|
||||
<div class="inner">PASS if we don't assert</div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Flexbox: Crash caused by rounding error in flex-shrink</title>
|
||||
<link rel="author" title="Tony Chang" href="mailto:tony@chromium.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#resolve-flexible-lengths">
|
||||
<link rel="issue" href="https://bugs.webkit.org/show_bug.cgi?id=97606">
|
||||
<meta name="assert" content="Check that crash doesn't happen in flex-shrink due to floating point precision errors.">
|
||||
|
||||
<style>
|
||||
.math {
|
||||
display: inline-flex;
|
||||
}
|
||||
.math > * {
|
||||
padding-bottom: 0.35em;
|
||||
}
|
||||
.mfrac {
|
||||
display: inline-flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.mfrac > :first-child {
|
||||
margin-block-end: 0.2em;
|
||||
}
|
||||
.mfrac > :last-child {
|
||||
margin-block-start: 0.2em;
|
||||
}
|
||||
.x {
|
||||
line-height: 9px;
|
||||
}
|
||||
.y {
|
||||
line-height: 12px;
|
||||
}
|
||||
</style>
|
||||
<div class=math>
|
||||
<div class=mfrac>
|
||||
<div class=mfrac>
|
||||
<div class=x>x</div>
|
||||
<div class=y>y</div>
|
||||
</div>
|
||||
<div class=mfrac>
|
||||
<div class=mfrac>
|
||||
<div class=x>x</div>
|
||||
<div class=y>y</div>
|
||||
</div>
|
||||
<div class=x>z</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue