electron/spec/fixtures/pages/draggable-page.html
Shelley Vohr 86e4529d26
fix: ensure context-menu emitted for draggable regions (#44761)
* fix: ensure context-menu emitted for draggable regions

* chore: address suggestions from review
2024-11-22 12:33:38 +01:00

22 lines
320 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Draggable Page</title>
<style>
.draggable {
-webkit-app-region: drag;
height: 100vh;
width: 100vw;
margin: 0;
background-color: #f0f0f0;
}
</style>
</head>
<body>
<div class="draggable"></div>
</body>
</html>