15 lines
398 B
HTML
15 lines
398 B
HTML
![]() |
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
||
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
||
|
<title>Context Menu Demo</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Context Menu Demo</h1>
|
||
|
<!-- highlight-next-line -->
|
||
|
<textarea id="editable"></textarea>
|
||
|
</body>
|
||
|
</html>
|