gecko-dev/layout/base/tests/bug1516963-4.html
Ting-Yu Lin a331856c45 Bug 1516963 - Make grid, flex, etc. be a selection target themselves if they contain no selectable children. r=emilio
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
2019-04-05 00:04:32 +00:00

35 lines
1.0 KiB
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<title>Bug 1516963: Test AccessibleCaret doesn't show when clicking on a flex container.</title>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<style>
#container {
display: flex;
border: 1px solid blue;
width: 100px;
height: 100px;
background-color: yellow;
}
button {
height: 40px;
width: 60px;
}
</style>
<script>
document.addEventListener("selectionchange", () => {
ok(window.getSelection().isCollapsed, "The selection should be collapsed!");
});
function click() {
let container = document.getElementById("container");
synthesizeMouseAtCenter(container, {});
setTimeout(() => { document.documentElement.removeAttribute("class"); });
}
</script>
<body onload="SimpleTest.waitForFocus(click);">
<div id="container"><button>Flex</button></div>
</body>
</html>