| Index: LayoutTests/fast/repaint/multicol-as-paint-container.html
|
| diff --git a/LayoutTests/fast/repaint/multicol-as-paint-container.html b/LayoutTests/fast/repaint/multicol-as-paint-container.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ccb69f6b3322fbe38a26536f44b3225a4b4ef661
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/repaint/multicol-as-paint-container.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<script src="resources/text-based-repaint.js"></script>
|
| +<script>
|
| + if (window.internals) {
|
| + onload = runRepaintTest;
|
| + } else {
|
| + onclick = repaintTest;
|
| + }
|
| + function repaintTest() {
|
| + var target = document.getElementById('target');
|
| + target.style.color = 'green';
|
| + }
|
| +</script>
|
| +<div id="target" style="-webkit-columns:2; -webkit-backface-visibility:hidden; width:630px; font:20px/1 Ahem; color:red;">
|
| + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce
|
| + varius, metus eu fringilla pulvinar, ipsum sapien ultricies arcu,
|
| + non condimentum quam est eu purus. Ut nisl libero, suscipit ut leo
|
| + eget, dapibus ultrices dolor.
|
| +</div>
|
| +<p>All text above should be green (if tested manually, you need to click first).</p>
|
|
|