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

Unified Diff: LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html

Issue 241113004: Incorrect invalidation on Google Forum (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added a NeedsRebaseline entry for Mac. Created 6 years, 8 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/fast/repaint/positioned-list-offset-change-repaint.html
diff --git a/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html b/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html
new file mode 100644
index 0000000000000000000000000000000000000000..c95c10caf7ffcad04c97a9cc068126a65f553d24
--- /dev/null
+++ b/LayoutTests/fast/repaint/positioned-list-offset-change-repaint.html
@@ -0,0 +1,49 @@
+<!DOCTYPE html>
+<html>
+<style>
+ul {
+ width: 978px;
+ position: absolute;
+ left: -2070px;
+}
+
+li {
+ position: absolute;
+ left: -690px;
+}
+
+#container {
+ height: 400px;;
+ position: relative;
+ overflow: hidden;
+}
+</style>
+<body>
+<div>This test checks that moving a positioned element with positioned children invalidates correctly.</div>
+<div>The image below should be completely invalidated.</div>
+<div id="container">
+ <ul id="list">
+ <li>
+ <img src="resources/apple.jpg">
+ </li>
+ </ul>
+</div>
+
+<script src="resources/text-based-repaint.js"></script>
+<script>
+function setUp() {
+ var elSlider = document.getElementById("list");
+ elSlider.style.left = "590px";
+ elSlider.offsetLeft;
+
+ runRepaintTest();
+}
+
+function repaintTest() {
+ var elSlider = document.getElementById("list");
+ elSlider.style.left = "690px";
+};
+
+window.addEventListener("load", setUp, false);
+</script>
+</body></html>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/repaint/positioned-list-offset-change-repaint-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698