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

Unified Diff: third_party/WebKit/Source/core/paint/test_data/position-and-scroll.html

Issue 1407543003: Preliminary paint property walk implementation for SPv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert forAllFrameViews change in FrameView.cpp. I don't know what I was thinking. Created 5 years, 2 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: third_party/WebKit/Source/core/paint/test_data/position-and-scroll.html
diff --git a/third_party/WebKit/Source/core/paint/test_data/position-and-scroll.html b/third_party/WebKit/Source/core/paint/test_data/position-and-scroll.html
new file mode 100644
index 0000000000000000000000000000000000000000..7ad9ad61e4e2e1abcb000f9e7fb77e9d0b54b14f
--- /dev/null
+++ b/third_party/WebKit/Source/core/paint/test_data/position-and-scroll.html
@@ -0,0 +1,39 @@
+<style>
+body {
+ margin: 0;
+}
+
+#scroller {
+ overflow: scroll;
+ width: 400px;
+ height: 300px;
+
+ margin-left: 120;
+ margin-top: 340;
+}
+
+#bloat {
+ height: 10000px;
+}
+
+#rel-pos {
+ position: relative;
+ left: 560px;
+ top: 780px;
+
+ transform: translateZ(0);
+}
+
+#abs-pos {
+ position: absolute;
+ left: 123px;
+ top: 456px;
+
+ transform: translateZ(0);
+}
+</style>
+<div id="scroller">
+ <div id="rel-pos"></div>
+ <div id="abs-pos"></div>
+ <div id="bloat"></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698