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

Side by Side Diff: LayoutTests/fast/regions/changing-writing-mode.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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>Changing writing mode on the first region</title>
5 </head>
6 <body style="color:black; background:white;">
7 <p>Below you should see the word 'PASS' on a lime background.</p>
8 <div id="container" style="width:20em; height:20em; line-height:2em;">
9 <div style="-webkit-flow-into:thread;">
10 <br>
11 <div style="-webkit-region-break-after:always;"></div>
12 <div style="-webkit-writing-mode:horizontal-tb;">PASS</div>
13 </div>
14 <div style="-webkit-flow-from:thread; background:black;"></div>
15 <div style="-webkit-flow-from:thread; background:lime;"></div>
16 </div>
17 <script>
18 document.getElementById('container').offsetLeft; // Make sure we hav e laid out.
19 document.getElementById('container').style.WebkitWritingMode = 'vert ical-rl';
20 </script>
21 </body>
22 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/regions/br-content-node-crash-expected.txt ('k') | LayoutTests/fast/regions/changing-writing-mode-2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698