blob: eb5f393e8b4efb9034e7b380b21615434d4671ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE HTML>
<html>
<title>Bug 1516963 Reference: Test AccessibleCaret doesn't show when clicking on an empty flex container.</title>
<style>
#container {
display: flex;
border: 1px solid blue;
width: 100px;
height: 100px;
background-color: yellow;
}
</style>
<body>
<div id="container"></div>
</body>
</html>
|