mirror of
https://github.com/electron/electron.git
synced 2026-01-15 02:18:18 -05:00
* fix: ensure context-menu emitted for draggable regions * chore: address suggestions from review
23 lines
320 B
HTML
23 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>
|