haikuwebkit/LayoutTests/fast/css/content/quote-crash-when-floating.html

20 lines
326 B
HTML

<!DOCTYPE html>
<html>
<title>This tests that quotes with overflow and float do not crash.</title>
<style>
q::after {
overflow-y: -webkit-paged-x;
float: right;
}
</style>
</head>
<body>
PASS if no crash or assert.
<q></q><q></q>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</body>
</html>