1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:37:34 +00:00
serenity/Tests/LibWeb/Text/input/UIEvents/custom-mouse-event.html
2024-01-20 08:57:37 +01:00

22 lines
824 B
HTML

<script src="../include.js"></script>
<script>
test(() => {
let testCounter = 1;
function testPart(part) {
println(`${testCounter}. ${JSON.stringify(part())}`);
testCounter++;
}
// 1. Creating a MouseEvent
testPart(() => new MouseEvent('click', { clientX: 10 }).clientX);
// 2. Creating a MouseEvent with modifier
testPart(() => new MouseEvent('click', { ctrlKey: true }).getModifierState('Control'));
// 3. Creating a MouseEvent with modifier
testPart(() => new MouseEvent('click', { modifierAltGraph: true }).getModifierState('AltGraph'));
// 4. Creating a MouseEvent with modifier
testPart(() => new MouseEvent('click', { modifierSymbolLock: true }).getModifierState('SymbolLock'));
});
</script>