Files
chrome-extensions-samples/apps/samples/frameless-window/frameless_window.html
Sam Thorogood 8af19b8ca9 move
2020-12-04 09:18:01 +11:00

38 lines
615 B
HTML

<html>
<head>
<title>Frameless Window</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="titlebar.js"></script>
<script src="frameless_window.js"></script>
</head>
<body>
<div id="content">
<div id="inner-content">
Select the titlebar to enable:<br/>
<input type="checkbox" id="top-box">Top Titlebar
<br/>
<input type="checkbox" id="bottom-box">Bottom Titlebar
<br/>
<input type="checkbox" id="left-box">Left Titlebar
<br/>
<input type="checkbox" id="right-box">Right Titlebar
<br/>
<br/>
<button id="close-window-button">Close Window</button>
</div>
</div>
</body>
</html>