haikuwebkit/LayoutTests/fast/text/simple-line-layout-line-box...

22 lines
490 B
HTML

<!doctype html>
<html>
<head>
<title>This tests that we don't use simple line layout when webkit-line-box-contain: glyphs is set and the glyphs overflow the line vertically.</title>
<style>
div {
-webkit-line-box-contain: glyphs;
line-height: 10px;
}
</style>
<script>
if (window.internals) {
internals.settings.setLegacyLineLayoutVisualCoverageEnabled(true);
internals.settings.setSimpleLineLayoutEnabled(false);
}
</script>
</head>
<body>
<div>foobar</div>
</body>
</html>