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

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

Issue 14359018: Correct overflow propagation in BTT and RTL writing-modes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@236320
Patch Set: Don't remove incorrect expected.png files. Add stuff to LayoutTests/TestExpectations instead. Created 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Border-after in horizontal-bt mode, non-visible overflow</title>
5 <style>
6 body { color:black; background:white; }
7 #container {
8 -webkit-writing-mode: horizontal-bt;
9 overflow:hidden;
10 -webkit-logical-height:100px;
11 -webkit-border-after:150px solid white;
12 background:red;
13 }
14 #inner { -webkit-logical-height:200px; background:white; }
15 </style>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
19 </script>
20 </head>
21 <body>
22 <p>The word 'HEST' should be seen below, and there should be no red.</p>
23 <div id="container">
24 <div id="inner">HEST</div>
25 </div>
26 <script>
27 if (window.testRunner) {
28 var height = container.scrollHeight;
29 document.body.innerHTML = height == 200 ? "PASS" : "FAIL - height was " + height;
30 }
31 </script>
32 </body>
33 </html>
OLDNEW
« 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