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

Unified Diff: LayoutTests/fast/dom/partial-layout-overlay-scrollbars.html

Issue 18601002: Add infrastructure for partial layouts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: define RenderObject::frameView in the header Created 7 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/fast/dom/partial-layout-overlay-scrollbars.html
diff --git a/LayoutTests/fast/dom/partial-layout-overlay-scrollbars.html b/LayoutTests/fast/dom/partial-layout-overlay-scrollbars.html
new file mode 100644
index 0000000000000000000000000000000000000000..ec2029f9f9d0ed861cde393409c180a682dc05d4
--- /dev/null
+++ b/LayoutTests/fast/dom/partial-layout-overlay-scrollbars.html
@@ -0,0 +1,42 @@
+<!DOCTYPE HTML>
+<html>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<link rel="stylesheet" href="../../resources/testharness.css">
+<head>
+<style>
+* {
+ margin: 0;
+ padding: 0;
+}
+
+#makespace {
+ height: 5000px;
+}
+</style>
+</head>
+<body>
+<div id="makespace"></div>
+<div id="measure"></div>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+
+ if (window.internals)
+ window.internals.setUsesOverlayScrollbars(true);
+
+ var test = async_test("Test that partial layout works with overlay scrollbars.");
+ setTimeout(function() {
+ test.step(function() {
+ var measure = document.getElementById('measure');
+ var measureWidth = measure.offsetWidth; // Partial layout occurs here!
+
+ assert_equals(measureWidth, document.body.offsetWidth);
+ assert_equals(measureWidth, window.innerWidth);
+ });
+
+ test.done();
+ }, 0);
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698