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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html

Issue 2466903003: Fix timeout of paint/invalidation/compositing/should-not-clip*.html (Closed)
Patch Set: Shrink the layers Created 4 years, 1 month 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: third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html
index bf0d3ddafa38a707da483db3fed295fc1c83d1b8..53899e1a42c9a72793112132bf9a2c090ef741f5 100644
--- a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer.html
@@ -6,20 +6,20 @@ if (window.internals)
function repaintTest() {
document.getElementById('content').style.backgroundColor = 'green';
var container = document.getElementById('container');
- container.scrollLeft = 2000;
- container.scrollTop = 2000;
+ container.scrollLeft = 500;
+ container.scrollTop = 400;
}
window.onload = runRepaintAndPixelTest;
</script>
<style>
#container {
- width: 500px;
- height: 500px;
+ width: 400px;
+ height: 300px;
overflow: scroll;
}
#content {
- width: 5000px;
- height: 5000px;
+ width: 1000px;
+ height: 1000px;
background-color: red;
}
</style>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-clip-composited-overflow-scrolling-layer-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698