Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Unified Diff: LayoutTests/paint/invalidation/spv2/textarea-set-disabled.html

Issue 1302183007: Convert some text-based-repaint tests for spv2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698