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

Side by Side Diff: LayoutTests/css3/unicode-bidi-isolate-basic.html

Issue 25687002: Add support for the column-fill property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Put changes to problematic files (for the bots) back in. Created 7 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 4 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
5 <style> 5 <style>
6 .resultsDiv { 6 .resultsDiv {
7 position: absolute; 7 position: absolute;
8 top: 0px; 8 top: 0px;
9 left: 0px; 9 left: 0px;
10 -moz-column-width: 13em; 10 -moz-column-width: 13em;
11 -moz-column-gap: 5em; 11 -moz-column-gap: 5em;
12 -webkit-columns:1 1px; /* Make as many (overflowing) columns as necessary, b ut keep them as narrow as possible */ 12 -webkit-columns:1 1px; /* Make as many (overflowing) columns as necessary, b ut keep them as narrow as possible */
13 -webkit-column-gap: 5em; 13 -webkit-column-gap: 5em;
14 -webkit-column-fill: auto;
15 columns:1 1px; 14 columns:1 1px;
16 column-gap: 5em; 15 column-gap: 5em;
17 column-fill: auto; 16 column-fill: auto;
18 height: 400px; 17 height: 400px;
19 } 18 }
20 </style> 19 </style>
21 </head> 20 </head>
22 <body> 21 <body>
23 <div>This table shows unicode-bidi: isolate behavior (in red) with display: inli ne-block behavior overlapping in green. You should see no red in this test! Be havior between these two methods should be identical for non-wrapping strings, a ssuming unicode-bidi: isolate is implemented and functioning correctly.</div> 22 <div>This table shows unicode-bidi: isolate behavior (in red) with display: inli ne-block behavior overlapping in green. You should see no red in this test! Be havior between these two methods should be identical for non-wrapping strings, a ssuming unicode-bidi: isolate is implemented and functioning correctly.</div>
24 23
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 } 69 }
71 } 70 }
72 } 71 }
73 } 72 }
74 } 73 }
75 74
76 </script> 75 </script>
77 </table> 76 </table>
78 </body> 77 </body>
79 </html> 78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698