| Index: LayoutTests/paint/invalidation/spv2/textarea-appearance-none-resize-handle.html
|
| diff --git a/LayoutTests/fast/repaint/textarea-appearance-none-resize-handle.html b/LayoutTests/paint/invalidation/spv2/textarea-appearance-none-resize-handle.html
|
| similarity index 56%
|
| copy from LayoutTests/fast/repaint/textarea-appearance-none-resize-handle.html
|
| copy to LayoutTests/paint/invalidation/spv2/textarea-appearance-none-resize-handle.html
|
| index c0af5c523a17c3d5d4b586d7664d54e86e91eab1..c88a6a251e1081cc9ef4d9e8309b84d9293dc2bf 100644
|
| --- a/LayoutTests/fast/repaint/textarea-appearance-none-resize-handle.html
|
| +++ b/LayoutTests/paint/invalidation/spv2/textarea-appearance-none-resize-handle.html
|
| @@ -1,10 +1,14 @@
|
| +<!-- Based on fast/repaint/textarea-appearance-none-resize-handle.html -->
|
| <!DOCTYPE html>
|
| -<script src="resources/text-based-repaint.js"></script>
|
| +<script src="resources/paint-invalidation-test.js"></script>
|
| <script>
|
| -function repaintTest() {
|
| +window.expectedPaintInvalidationObjects = [
|
| + "LayoutTextControl (positioned) TEXTAREA id='textarea'",
|
| +];
|
| +function paintInvalidationTest() {
|
| document.getElementById('textarea').style.height = '200px';
|
| }
|
| -onload = runRepaintTest;
|
| +onload = runPaintInvalidationTest;
|
| </script>
|
| Tests paint invalidation of resize handle when a textarea is resized.
|
| Passes if the resize handle is repainted correctly leaving no residue.
|
|
|