blob: c30483ce57f0cc2a8c82076d6572d79a66c63edd (
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 table container.</title>
<style>
#container {
display: table;
border: 1px solid blue;
width: 100px;
height: 100px;
background-color: yellow;
}
button {
height: 40px;
width: 60px;
}
</style>
<body>
<div id="container"><button>Table</button></div>
</body>
</html>
|