mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
a331856c45
Exclude replaced frame likes image frames otherwise editor/libeditor/tests/test_abs_positioner_positioning_elements.html will break. Differential Revision: https://phabricator.services.mozilla.com/D26049 --HG-- extra : moz-landing-system : lando
21 lines
415 B
HTML
21 lines
415 B
HTML
<!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>
|