Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / overflow / line-clamp-and-columns.html
blobe00bf67ebb6ac4cb79d84d08dbb16710a6002998
1 <!DOCTYPE html>
2 <div id=flexbox style="-webkit-box-orient: vertical; -webkit-line-clamp: 1; display: -webkit-box; background-color: salmon; overflow:hidden">
3 <span>AAA </span><a href=#>X</a>
4 </div>
5 <script>
6 document.body.offsetTop;
7 // If the page doesn't crash under AddressSanitizer, then the test passes.
8 if (window.testRunner)
9 testRunner.dumpAsText();
10 </script>
11 <style>
12 body {
13 -webkit-column-width: 50px;
14 -webkit-column-count: 12;
16 </style>