| Index: third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline.html b/third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3f5bd61fa3dae61ea3c73cffdc30e59e3609dc3a
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/block/positioning/complex-positioned-movement-inline.html
|
| @@ -0,0 +1,39 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +.red {
|
| + position: absolute;
|
| + left:100px;
|
| + top:0;
|
| + width: 100px;
|
| + height: 100px;
|
| + background-color: red;
|
| +}
|
| +.block {
|
| + position: absolute;
|
| + left:0;
|
| + top:0;
|
| + width: 100px;
|
| + height: 100px;
|
| + background-color: green;
|
| +}
|
| +.relative-inline {
|
| + position:relative;
|
| + display: inline;
|
| +}
|
| +</style>
|
| +<p>crbug.com/517369: There should be no red. </p>
|
| +<div style="position: relative;">
|
| + <div class="red"></div>
|
| + <span class="relative-inline">
|
| + <div>
|
| + <span class="relative-inline">
|
| + <div class="block" id="inner"></div>
|
| + </span>
|
| + </div>
|
| + </span>
|
| +</div>
|
| +<script>
|
| + document.body.offsetLeft;
|
| + document.getElementById('inner').style.left = '100px';
|
| +</script>
|
| +
|
|
|