Commit 18fa197b authored by Antonio Gomes's avatar Antonio Gomes Committed by Commit Bot

[css-flexbox] Migrate nested-orthogonal-flexbox-relayout.html to WPT

BUG=1063749
R=dgrogan@chromium.org

Change-Id: I577d88c5cee4f7716e07db8b335b83cc35d8e93e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2134866Reviewed-by: default avatarDavid Grogan <dgrogan@chromium.org>
Commit-Queue: Antonio Gomes <tonikitoo@igalia.com>
Cr-Commit-Position: refs/heads/master@{#756930}
parent 291afe91
<!DOCTYPE html>
<style>
#column {
display: flex;
flex-direction: column;
border: 5px solid yellow;
}
#row {
display: flex;
flex-direction: row;
border: 5px solid blue;
}
.item {
border: 5px solid green;
}
</style>
<body>
<div id="column">
<div id="row">
<div class="item">This text should not overflow its box</div>
</div>
</div>
<script>
var columnBox = document.getElementById("column");
columnBox.offsetHeight;
columnBox.style.width = "200px";
</script>
\ No newline at end of file
<!DOCTYPE html>
<html>
<title>CSS Flexbox: nested orthogonal children on relayout.</title>
<link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#flex-direction-property">
<link rel="match" href="reference/nested-orthogonal-flexbox-relayout-ref.html">
<meta name="assert" content="This test ensures nested orthogonal flex items get properly relaid out when flexbox changes dimensions."/>
<style>
#column {
display: flex;
flex-direction: column;
border: 5px solid yellow;
}
#row {
display: flex;
flex-direction: row;
border: 5px solid blue;
}
.item {
border: 5px solid green;
}
</style>
<body>
<div id="column">
<div id="row">
<div class="item">This text should not overflow its box</div>
</div>
</div>
<script>
var columnBox = document.getElementById("column");
columnBox.offsetHeight;
columnBox.style.width = "200px";
</script>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment