Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/the-button-element/interest-target/interesttarget-plain-inline-element.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<link rel="match" href="../../../../css/reference/ref-filled-green-100px-square.xht">
<meta name="flags" content="ahem">
<style>
a:link {
color: green;
}
[popover] {
position-area: bottom right;
inset: auto;
overflow: visible;
margin: 0;
border: none;
padding: 0;
}
</style>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="resources/invoker-utils.js"></script>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="container" style="font:20px/1 Ahem; width:100px; height:100px; color:green; background:red;">
<a id="anchor" href="#" interesttarget="doohickey" style="interest-target-delay:0s;">x</a>xxxx
</div>
<div popover="hint" id="doohickey">
<div style="margin-left:-20px; width:100px; height:80px; background:green;"></div>
</div>
<script>
async function test() {
await hoverOver(anchor);
document.documentElement.classList.remove("reftest-wait");
}
test();
</script>
</html>