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