gecko-dev/testing/web-platform/tests/css/css-flexbox/flexbox_stf-fixpos.html
Christian Biesinger eec4b1ff0a Bug 1554338 [wpt PR 17007] - [css-flexbox] Use an existing file for a blank reference, a=testonly
Automatic update from web-platform-tests
[css-flexbox] Use an existing file for a blank reference

about:blank doesn't work, at least in the Chromium test harness,
because it concatenates it to a path and then doesn't find the file.

Bug: 963168
Change-Id: I377ee38ad1df1039e89257673b71c983099bab55
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1629332
Commit-Queue: Christian Biesinger <cbiesinger@chromium.org>
Commit-Queue: Koji Ishii <kojii@chromium.org>
Auto-Submit: Christian Biesinger <cbiesinger@chromium.org>
Reviewed-by: Koji Ishii <kojii@chromium.org>
Cr-Commit-Position: refs/heads/master@{#663351}

--

wp5At-commits: ac3d096a5972dea5ecca1c43e324086895db7c6f
wpt-pr: 17007
2019-06-19 11:06:01 -07:00

33 lines
578 B
HTML

<!DOCTYPE html>
<title>flexbox | flexcontainer versus stf :: fixed</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-items">
<link rel="match" href="../reference/blank.html">
<style>
#test {
background: red;
position: fixed;
}
div div {
background: white;
width: 300px;
display: flex;
flex-wrap: wrap;
}
p {
color: white;
margin: 1em;
width: 200px;
}
</style>
<div id="test">
<div>
<p>filler</p>
<p>filler</p>
<p>filler</p>
<p>filler</p>
<p>filler</p>
</div>
</div>