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

Unified Diff: third_party/WebKit/LayoutTests/compositing/overflow/ancestor-overflow-layer-of-sticky-child-of-compositing-container-expected.html

Issue 2890583002: Fix incorrect use of coords conversion for sticky elements (Closed)
Patch Set: Add comments Created 3 years, 7 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/LayoutTests/compositing/overflow/ancestor-overflow-layer-of-sticky-child-of-compositing-container-expected.html
diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/ancestor-overflow-layer-of-sticky-child-of-compositing-container-expected.html b/third_party/WebKit/LayoutTests/compositing/overflow/ancestor-overflow-layer-of-sticky-child-of-compositing-container-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..ac1a3914029f5076a5094fa1256eddf222997969
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/compositing/overflow/ancestor-overflow-layer-of-sticky-child-of-compositing-container-expected.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<style>
+.fixed {
+ position: fixed;
+}
flackr 2017/05/19 18:28:31 Remove unused class.
yigu 2017/05/23 19:16:40 Done.
+
+.composited {
+ /* Force compositing without creating a stacking context */
+ backface-visibility: hidden;
+}
+
+.spacer {
+ height: 2000px;
+}
+
+.container {
+ width: 500px;
+ height: 500px;
+ overflow: scroll;
+}
+</style>
+
+<div class="composited">
+ Ref text.
+ <div class="container">
+ <div>
+ This line should line up with the text above.
+ </div>
+ <div class="spacer"></div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698