Files
chrome-extensions-samples/samples/frameless-window/frameless_window.html
2014-09-02 18:06:16 +02: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>