gecko-dev/layout/style/test/test_hover_on_part.html
Emilio Cobos Álvarez 353b658d5a Bug 1600773 - Invalidate shadow part pseudo-class styles correctly. r=heycam
I was going to send a test for `:focus` via wpt, but then realized it was
probably not spec-compliant with the new rules people want to follow for
:focus, so I filed https://github.com/w3c/csswg-drafts/issues/4555 instead.

Testing `:hover` / `:active` via wpt looked quite a bit of a hassle.

Differential Revision: https://phabricator.services.mozilla.com/D55591

--HG--
extra : moz-landing-system : lando
2019-12-09 13:40:16 +00:00

53 lines
1.2 KiB
HTML

<!doctype html>
<title>Shadow parts are invalidated correctly when only a pseudo-class state to the right of the part matches</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<style>
div {
width: 100px;
height: 100px;
}
#host::part(p) {
background-color: red;
}
#host::part(p):hover {
background-color: lime;
}
</style>
<div id="host"></div>
<div id="random-element-to-force-change"></div>
<script>
SimpleTest.waitForExplicitFinish();
let host = document.getElementById("host");
host.attachShadow({ mode: "open" }).innerHTML = `
<style>
div {
width: 100px;
height: 100px;
}
</style>
<div part=p></div>
`;
let part = host.shadowRoot.querySelector("div");
let other = document.getElementById("random-element-to-force-change");
SimpleTest.waitForFocus(function() {
synthesizeMouseAtCenter(other, {type: "mousemove"});
is(
getComputedStyle(part).backgroundColor,
"rgb(255, 0, 0)",
"Part is red"
);
synthesizeMouseAtCenter(part, {type: "mousemove"});
is(
getComputedStyle(part).backgroundColor,
"rgb(0, 255, 0)",
"Part is lime"
);
SimpleTest.finish();
});
</script>