Chromium Code Reviews| Index: LayoutTests/fast/block/positioning/positioned-movement-layout-when-bottom-changes-to-and-from-auto.html |
| diff --git a/LayoutTests/fast/block/positioning/positioned-movement-layout-when-bottom-changes-to-and-from-auto.html b/LayoutTests/fast/block/positioning/positioned-movement-layout-when-bottom-changes-to-and-from-auto.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..25a1231ef080058129d4ec3fecf27580fc50f652 |
| --- /dev/null |
| +++ b/LayoutTests/fast/block/positioning/positioned-movement-layout-when-bottom-changes-to-and-from-auto.html |
| @@ -0,0 +1,28 @@ |
| +<!DOCTYPE HTML> |
| +<style> |
| +body { |
| + margin: 0; |
| +} |
| +#test { |
| + position: absolute; |
| + background-color: green; |
|
mstensho (USE GERRIT)
2015/02/02 19:34:03
Without the changes I suggested, regarding adding
|
| + top: 0; |
| + left: 0; |
| + right: 0; |
| +} |
| +</style> |
| +<script src="../../../resources/check-layout.js"></script> |
| +<script> |
| +function runTest() |
| +{ |
| + var test = document.getElementById('test'); |
| + document.body.offsetTop; |
| + test.style['bottom'] = '50%'; |
| + document.body.offsetTop; |
| + test.style['bottom'] = 'auto'; |
| + window.checkLayout("#test"); |
| +} |
| +window.onload = runTest; |
| +</script> |
| +Tests positioned movement layout when its height is changed by top/bottom changing from auto to fixed and back again. |
| +<div id="test" data-expected-height=0></div> |