| Index: LayoutTests/fast/repaint/multicol-with-overflowing-block-bt.html
|
| diff --git a/LayoutTests/fast/repaint/multicol-with-overflowing-block-bt.html b/LayoutTests/fast/repaint/multicol-with-overflowing-block-bt.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..67dd28884b9476924f23644e42cf52054e825398
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/repaint/multicol-with-overflowing-block-bt.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<script src="resources/text-based-repaint.js"></script>
|
| +<script>
|
| + if (window.internals) {
|
| + internals.settings.setRegionBasedColumnsEnabled(true);
|
| + onload = runRepaintTest;
|
| + } else {
|
| + onclick = repaintTest;
|
| + }
|
| + function repaintTest() {
|
| + document.getElementById('elm').style.background = 'green';
|
| + }
|
| +</script>
|
| +<div id="container" style="-webkit-columns:3; -webkit-column-gap:0; column-fill:auto; width:500px; height:500px; -webkit-writing-mode:horizontal-bt;">
|
| + <div style="height:100px;">
|
| + <div id="elm" style="height:1500px; background:yellow;"></div>
|
| + </div>
|
| +</div>
|
| +<p>Test changing the background color of a big block that overflows the flow thread.</p>
|
| +<p>A green square should be seen above (if tested manually, you need to click first).</p>
|
|
|