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

Unified Diff: Source/web/tests/data/fractional-scroll-fixed-position.html

Issue 747903005: Pass integer scroll position to CC if frameView has non-layered viewport constrained objects (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: call updateDescendantDependentFlags() before calling hasVisibleContent() otherwise it crashes Created 6 years 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: Source/web/tests/data/fractional-scroll-fixed-position.html
diff --git a/Source/web/tests/data/fractional-scroll-fixed-position.html b/Source/web/tests/data/fractional-scroll-fixed-position.html
new file mode 100644
index 0000000000000000000000000000000000000000..633bc5c49dda5c7c0cdb9c4c07bdd40e7fe46989
--- /dev/null
+++ b/Source/web/tests/data/fractional-scroll-fixed-position.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<style>
+#settings {
+ min-width: 100px;
+ min-height: 100px;
+ position: fixed;
+ top: 0px;
+ background-color:red;
+}
+</style>
+<html>
+<body style="width:1000px;height:2000px;">
+<div id="settings">
+</div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698