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

Unified Diff: LayoutTests/paint/invalidation/spv2/textarea-appearance-none-resize-handle.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-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.

Powered by Google App Engine
This is Rietveld 408576698