| Index: LayoutTests/paint/invalidation/spv2/textarea-set-disabled.html
|
| diff --git a/LayoutTests/paint/invalidation/spv2/textarea-set-disabled.html b/LayoutTests/paint/invalidation/spv2/textarea-set-disabled.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f100721221d07f05a5fca7e071d6514da708f5e0
|
| --- /dev/null
|
| +++ b/LayoutTests/paint/invalidation/spv2/textarea-set-disabled.html
|
| @@ -0,0 +1,24 @@
|
| +<!-- Based on fast/repaint/textarea-set-disabled.html -->
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| + <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
|
| + <script>
|
| + window.expectedPaintInvalidationObjects = [
|
| + "LayoutTextControl TEXTAREA",
|
| + "LayoutBlockFlow DIV id='inner-editor'",
|
| + "LayoutTextControl TEXTAREA",
|
| + "LayoutBlockFlow DIV id='inner-editor'",
|
| + ];
|
| + function paintInvalidationTest()
|
| + {
|
| + document.getElementsByTagName('textarea')[0].disabled = true;
|
| + }
|
| + </script>
|
| +</head>
|
| +<body onload="runPaintInvalidationTest()">
|
| +<form>
|
| + <textarea style="font: 10px Ahem; width: 100px; height: 100px;"></textarea>
|
| +</form>
|
| +</body>
|
| +</html>
|
|
|