blob: 4eef8b72b1969f5d5e02784cfffc23c858a93c5c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This tests that we can select flex content when they share the same line.</title>
<style>
div {
color: transparent;
font-size: 10px;
}
div::selection {
background-color: green;
}
</style>
</head>
<body>
<div>&nbsp&nbsp</div>
<script>
document.execCommand('selectAll', false, null);
</script>
</body>
</html>