blob: e00bf67ebb6ac4cb79d84d08dbb16710a6002998 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<div id=flexbox style="-webkit-box-orient: vertical; -webkit-line-clamp: 1; display: -webkit-box; background-color: salmon; overflow:hidden">
<span>AAA </span><a href=#>X</a>
</div>
<script>
document.body.offsetTop;
// If the page doesn't crash under AddressSanitizer, then the test passes.
if (window.testRunner)
testRunner.dumpAsText();
</script>
<style>
body {
-webkit-column-width: 50px;
-webkit-column-count: 12;
}
</style>
|