| Index: LayoutTests/fast/block/positioning/positioned-layout-in-line.html
|
| diff --git a/LayoutTests/fast/block/positioning/positioned-layout-in-line.html b/LayoutTests/fast/block/positioning/positioned-layout-in-line.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a8d075c1b8f384212ee2d2dab685a7e129fa7fe9
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/block/positioning/positioned-layout-in-line.html
|
| @@ -0,0 +1,25 @@
|
| +<!DOCTYPE HTML>
|
| +<style>
|
| + #container {
|
| + position: relative;
|
| + }
|
| + .img {
|
| + position: absolute;
|
| + background-color: green;
|
| + height: 10px;
|
| + width: 10px;
|
| + top: 0;
|
| + }
|
| +</style>
|
| +<div id="container">
|
| + <input type="text" id="leading"></input>
|
| + <input type="text"></input>
|
| + <img class="img" id="img">
|
| +</div>
|
| +crbug.com/498290: Tests positioned movement layout when it has a non-static block position and sits in a line. The green image should be beside the input box.
|
| +<script>
|
| + document.body.offsetTop;
|
| + leading = document.getElementById("leading");
|
| + leading.setAttribute('type', 'hidden');
|
| + document.body.offsetTop;
|
| +</script>
|
|
|