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

Unified Diff: LayoutTests/paint/invalidation/spv2/margin.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/margin.html
diff --git a/LayoutTests/fast/repaint/margin.html b/LayoutTests/paint/invalidation/spv2/margin.html
similarity index 58%
copy from LayoutTests/fast/repaint/margin.html
copy to LayoutTests/paint/invalidation/spv2/margin.html
index 7184b5ecb37a87566a496d2624a4c67e32198028..aa0cfa296b5c84d36bdcf63ddb0f1192b8cc5002 100644
--- a/LayoutTests/fast/repaint/margin.html
+++ b/LayoutTests/paint/invalidation/spv2/margin.html
@@ -1,13 +1,17 @@
+<!-- Based on fast/repaint/margin.html -->
<!DOCTYPE HTML>
-<script src="resources/text-based-repaint.js"></script>
+<script src="resources/paint-invalidation-test.js"></script>
<script>
-function repaintTest()
+window.expectedPaintInvalidationObjects = [
+ "LayoutBlockFlow (positioned) DIV id='target'",
+];
+function paintInvalidationTest()
{
// Margin change will visually move the content of the div.
// Should repaint the old position and the new position.
document.getElementById('target').style.margin = '20px';
}
-window.onload = runRepaintTest;
+window.onload = runPaintInvalidationTest;
</script>
<style>
body {

Powered by Google App Engine
This is Rietveld 408576698