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

Unified Diff: LayoutTests/fast/css/overflow-btt-border-after.html

Issue 18720003: Correct overflow propagation in BTT and RTL writing-modes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add FIXME, as requested. Created 7 years, 5 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 | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/css/overflow-btt-border-after-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/overflow-btt-border-after.html
diff --git a/LayoutTests/fast/css/overflow-btt-border-after.html b/LayoutTests/fast/css/overflow-btt-border-after.html
new file mode 100644
index 0000000000000000000000000000000000000000..c07c6256370e332231519f764d3adf310c677234
--- /dev/null
+++ b/LayoutTests/fast/css/overflow-btt-border-after.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Border-after in horizontal-bt mode, non-visible overflow</title>
+ <style>
+ body { color:black; background:white; }
+ #container {
+ -webkit-writing-mode: horizontal-bt;
+ overflow:scroll;
+ height:100px;
+ border-top:150px solid white;
+ background:red;
+ }
+ #inner { height:200px; background:white; }
+ </style>
+ <script src="../../resources/check-layout.js"></script>
+ </head>
+ <body onload="checkLayout('#container'); inner.scrollIntoView();">
+ <!-- We have to set the scroll position, because of https://bugs.webkit.org/show_bug.cgi?id=76129
+ This is just to make it look good; checkLayout() doesn't care. -->
+ <p>The word 'HEST' should be seen below, and there should be no red.</p>
+ <div id="container" data-expected-scroll-height="200">
+ <div id="inner">HEST</div>
+ </div>
+ </body>
+</html>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/css/overflow-btt-border-after-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698