mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision e15b5ebba7465e09bcda2962f6758cddcdcfa248
This commit is contained in:
parent
68e55ead42
commit
3eaee747ed
214 changed files with 4692 additions and 245 deletions
|
@ -0,0 +1,18 @@
|
|||
<!doctype html>
|
||||
<title>CSS Test Reference</title>
|
||||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
||||
<style>
|
||||
div {
|
||||
border: 1px solid;
|
||||
}
|
||||
#myHeightChanges {
|
||||
width: 100px;
|
||||
height: 200px;
|
||||
background: green;
|
||||
}
|
||||
</style>
|
||||
<div style="display:flex; flex-direction:column">
|
||||
<div style="height:auto">
|
||||
<div id="myHeightChanges"></div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,28 @@
|
|||
<!doctype html>
|
||||
<title>CSS Test: Dynamic change to the block size inside an auto-sized flex item</title>
|
||||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
||||
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-flexbox">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1496833">
|
||||
<link rel="match" href="dynamic-bsize-change-ref.html">
|
||||
<style>
|
||||
div {
|
||||
border: 1px solid;
|
||||
}
|
||||
#myHeightChanges {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background: green;
|
||||
}
|
||||
</style>
|
||||
<div style="display:flex; flex-direction:column">
|
||||
<div style="height:auto">
|
||||
<div id="myHeightChanges"></div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
onload = function() {
|
||||
window.unused = myHeightChanges.offsetTop;
|
||||
myHeightChanges.style.height = "200px";
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue