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

Unified Diff: LayoutTests/fast/transforms/transform-update-frame-overflow.html

Issue 328023002: Layout overflow from transforms should update frame scrollbars (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase & revise Created 6 years, 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/transforms/transform-update-frame-overflow-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/transforms/transform-update-frame-overflow.html
diff --git a/LayoutTests/fast/transforms/transform-update-frame-overflow.html b/LayoutTests/fast/transforms/transform-update-frame-overflow.html
new file mode 100644
index 0000000000000000000000000000000000000000..9c925fe573a966096fcdfbee3de5ba67962f2a11
--- /dev/null
+++ b/LayoutTests/fast/transforms/transform-update-frame-overflow.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<style>
+#transformed {
+ width: 100px;
+ height: 100px;
+ background-color: green;
+ transform: translateY(0);
+}
+</style>
+<div id="transformed">
+</div>
+<script>
+ document.body.offsetTop;
+
+ var transformed = document.getElementById('transformed');
+ transformed.style.transform = "translateY(1000px)";
+ window.scrollTo(0, 1000);
+</script>
« no previous file with comments | « no previous file | LayoutTests/fast/transforms/transform-update-frame-overflow-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698