haikuwebkit/LayoutTests/fast/multicol/no-multicol-for-textareas.html

20 lines
329 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>This tests that we don't create multicolumn content for textareas</title>
<style>
textarea {
columns: 2;
}
</style>
</head>
<body>
PASS if no assert in debug.
<textarea placeholder="foobar"></textarea>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</body>
</html>