blob: 1575e6d81c72d0deebf0d0af5575ecac1594c200 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This tests that multi-column positioned RTL content works.</title>
<style>
div {
-webkit-column-count: 2;
}
.outer {
position: relative;
direction: rtl;
}
.inner {
position: absolute;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<div><span class=outer><span class=inner></span></span></div>
PASS if no crash or ASSERT.
</body>
</html>